6033 lines
310 KiB
Diff
6033 lines
310 KiB
Diff
From 047b1201db573f2899d3f4a8ccefcd17b1e877c1 Mon Sep 17 00:00:00 2001
|
||
From: liuxinhao <liuxinhao@kylinsec.com.cn>
|
||
Date: Tue, 12 Jul 2022 14:50:52 +0800
|
||
Subject: [PATCH] fix(translator): update translator
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
- 更新控制中心部分翻译
|
||
---
|
||
CMakeLists.txt | 17 +-
|
||
.../kiran-module-widget.cpp | 4 +-
|
||
plugins/appearance/CMakeLists.txt | 8 +-
|
||
.../kiran-cpanel-appearance.zh_CN.ts | 146 +-
|
||
plugins/keybinding/CMakeLists.txt | 4 +-
|
||
plugins/keybinding/src/main.cpp | 17 +-
|
||
.../kiran-cpanel-keybinding.zh_CN.ts | 220 +-
|
||
plugins/keyboard/CMakeLists.txt | 2 +-
|
||
.../kiran-cpanel-keyboard.zh_CN.ts | 80 +-
|
||
.../translations/kiran-cpanel-mouse.zh_CN.ts | 160 +-
|
||
plugins/timedate/CMakeLists.txt | 10 +-
|
||
.../kiran-cpanel-timedate.zh_CN.ts | 4129 +----------------
|
||
src/main.cpp | 6 +-
|
||
translations/kiran-control-panel.zh_CN.ts | 165 +-
|
||
14 files changed, 494 insertions(+), 4474 deletions(-)
|
||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
index 8338806..53e081a 100644
|
||
--- a/CMakeLists.txt
|
||
+++ b/CMakeLists.txt
|
||
@@ -26,19 +26,20 @@ configure_file(${CMAKE_SOURCE_DIR}/data/config.h.in ${CMAKE_BINARY_DIR}/config.h
|
||
configure_file(${CMAKE_SOURCE_DIR}/data/${PROJECT_NAME}.desktop.in ${CMAKE_BINARY_DIR}/${PROJECT_NAME}.desktop)
|
||
configure_file(${CMAKE_SOURCE_DIR}/data/${PROJECT_NAME}.pc.in ${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc @ONLY)
|
||
|
||
-file(GLOB_RECURSE include "./include/*")
|
||
+file(GLOB_RECURSE INCLUDE_SRC "./include/*")
|
||
file(GLOB_RECURSE CONTROL_PANEL_SRC "./src/*")
|
||
-file(GLOB TS_FILES "../translations/*.ts")
|
||
|
||
set(RESOURCE ./resources/control-panel-resources.qrc) #资源文件名不能与插件资源名相同,否则会导致插件中部分图片无法正常加载显示。
|
||
-qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES})
|
||
+
|
||
+file(GLOB_RECURSE LIB_SRC "lib/*.cpp" "lib/*.h")
|
||
+set(PANEL_ALL_TRANSLATION_SRC ${INCLUDE_SRC} ${CONTROL_PANEL_SRC} ${LIB_SRC} )
|
||
+qt5_create_translation(PANEL_QM_FILES ${PANEL_ALL_TRANSLATION_SRC} "translations/kiran-control-panel.zh_CN.ts")
|
||
|
||
add_executable(${PROJECT_NAME}
|
||
- ${common}
|
||
- ${include}
|
||
+ ${INCLUDE_SRC}
|
||
${CONTROL_PANEL_SRC}
|
||
${RESOURCE}
|
||
- ${QM_FILES})
|
||
+ ${PANEL_QM_FILES})
|
||
|
||
target_include_directories(${PROJECT_NAME} PRIVATE
|
||
${CMAKE_CURRENT_BINARY_DIR}
|
||
@@ -65,13 +66,13 @@ target_link_libraries(${PROJECT_NAME}
|
||
#安装kiran-control-panel
|
||
install(TARGETS ${PROJECT_NAME} DESTINATION ${INSTALL_BINDIR}/)
|
||
#安装kiran-control-panel插件开发头文件
|
||
-install(FILES ${include} DESTINATION ${KCP_INSTALL_INCLUDE}/)
|
||
+install(FILES ${INCLUDE_SRC} DESTINATION ${KCP_INSTALL_INCLUDE}/)
|
||
#安装kiran-control-panel.desktop
|
||
install(FILES "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.desktop" DESTINATION "${INSTALL_DATADIR}/applications/")
|
||
#安装kiran-control-panel.pc文件
|
||
install(FILES "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc" DESTINATION "${INSTALL_LIBDIR}/pkgconfig/")
|
||
#安装kiran-control-panel翻译文件
|
||
-install(FILES ${QM_FILES} DESTINATION ${TRANSLATION_INSTALL_DIR})
|
||
+install(FILES ${PANEL_QM_FILES} DESTINATION ${TRANSLATION_INSTALL_DIR})
|
||
#安装kiran-control-panel category desktop文件
|
||
file(GLOB CATEGORY_DESKTOP "./data/category/desktop/*.desktop")
|
||
install(FILES ${CATEGORY_DESKTOP} DESTINATION ${CATEGORY_DESKTOP_INSTALL_DIR})
|
||
diff --git a/lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp b/lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp
|
||
index 1fb7747..77df10b 100644
|
||
--- a/lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp
|
||
+++ b/lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp
|
||
@@ -138,9 +138,9 @@ bool KiranModuleWidget::checkHasUnSaved()
|
||
if (haveUnsavedOptions)
|
||
{
|
||
auto clickedButton = KiranMessageBox::message(this, tr("Warning"),
|
||
- QString("The edited content in %1 is not saved."
|
||
+ QString(tr("The edited content in %1 is not saved."
|
||
" After switching, the edited content will be lost."
|
||
- " Are you sure you want to save?")
|
||
+ " Are you sure you want to save?"))
|
||
.arg(subItemName),
|
||
KiranMessageBox::Yes | KiranMessageBox::No);
|
||
if (clickedButton == KiranMessageBox::No)
|
||
diff --git a/plugins/appearance/CMakeLists.txt b/plugins/appearance/CMakeLists.txt
|
||
index bafe49a..72045e8 100644
|
||
--- a/plugins/appearance/CMakeLists.txt
|
||
+++ b/plugins/appearance/CMakeLists.txt
|
||
@@ -16,15 +16,15 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/appearance-config.h.in ${CMAKE_CURREN
|
||
kiran_qt5_add_dbus_interface_ex(APPEARANCE_PROXY
|
||
src/dbus-interface/com.kylinsec.Kiran.SessionDaemon.Appearance.xml
|
||
appearance_backEnd_proxy AppearanceBackEndProxy)
|
||
-
|
||
-qt5_create_translation( APPEARANCE_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} translations/kiran-cpanel-appearance.zh_CN.ts )
|
||
+
|
||
+qt5_create_translation( APPEARANCE_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} "translations/kiran-cpanel-appearance.zh_CN.ts" )
|
||
|
||
file(GLOB_RECURSE APPEARANCE_SRC
|
||
${CMAKE_CURRENT_SOURCE_DIR}/*.cpp
|
||
${CMAKE_CURRENT_SOURCE_DIR}/*.h
|
||
${CMAKE_CURRENT_SOURCE_DIR}/*.ui)
|
||
|
||
-add_library(${TARGET_NAME} SHARED ${APPEARANCE_SRC} ${APPEARANCE_PROXY})
|
||
+add_library(${TARGET_NAME} SHARED ${APPEARANCE_SRC} ${APPEARANCE_PROXY} ${APPEARANCE_QM_FILES})
|
||
|
||
target_include_directories(${TARGET_NAME} PRIVATE
|
||
src
|
||
@@ -50,7 +50,7 @@ target_link_libraries(${TARGET_NAME}
|
||
install(TARGETS ${TARGET_NAME}
|
||
DESTINATION ${PLUGIN_LIBS_INSTALL_DIR}/)
|
||
|
||
-install(FILES ${QM_FILES}
|
||
+install(FILES ${APPEARANCE_QM_FILES}
|
||
DESTINATION ${APPEARANCE_TRANSLATIONS_DIR})
|
||
|
||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/kiran-cpanel-appearance.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/kiran-cpanel-appearance.desktop @ONLY)
|
||
diff --git a/plugins/appearance/translations/kiran-cpanel-appearance.zh_CN.ts b/plugins/appearance/translations/kiran-cpanel-appearance.zh_CN.ts
|
||
index 01d709a..4b52d80 100644
|
||
--- a/plugins/appearance/translations/kiran-cpanel-appearance.zh_CN.ts
|
||
+++ b/plugins/appearance/translations/kiran-cpanel-appearance.zh_CN.ts
|
||
@@ -1,37 +1,22 @@
|
||
<?xml version="1.0" encoding="utf-8"?>
|
||
<!DOCTYPE TS>
|
||
<TS version="2.1" language="zh_CN">
|
||
-<context>
|
||
- <name>ChooserWidget</name>
|
||
- <message>
|
||
- <location filename="../src/common/chooser-widget.ui" line="26"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/common/chooser-widget.ui" line="47"/>
|
||
- <location filename="../src/common/chooser-widget.ui" line="67"/>
|
||
- <location filename="../src/common/chooser-widget.ui" line="74"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
<context>
|
||
<name>CursorThemes</name>
|
||
<message>
|
||
<location filename="../src/pages/theme/cursor-themes/cursor-themes.cpp" line="53"/>
|
||
<source>Cursor Themes Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>光标主题设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/cursor-themes/cursor-themes.cpp" line="214"/>
|
||
<source>Faild</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/cursor-themes/cursor-themes.cpp" line="215"/>
|
||
<source>Set cursor themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>设置光标主题失败!</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -39,22 +24,22 @@
|
||
<message>
|
||
<location filename="../src/pages/font/fonts.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/font/fonts.ui" line="76"/>
|
||
<source>Application Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>应用程序字体设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/font/fonts.ui" line="152"/>
|
||
<source>Titlebar Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>窗口标题字体设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/font/fonts.ui" line="222"/>
|
||
<source>Monospace Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>等宽字体设置</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -62,22 +47,22 @@
|
||
<message>
|
||
<location filename="../src/pages/theme/icon-themes/icon-themes.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/icon-themes/icon-themes.ui" line="35"/>
|
||
<source>Icon Themes Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>图标主题设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/icon-themes/icon-themes.cpp" line="257"/>
|
||
<source>Faild</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/icon-themes/icon-themes.cpp" line="258"/>
|
||
<source>Set icon themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>设置图标主题失败!</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -85,22 +70,22 @@
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/widget/image-selector.cpp" line="102"/>
|
||
<source>Add Image Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加壁纸失败</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/widget/image-selector.cpp" line="103"/>
|
||
<source>The image already exists!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>该壁纸已存在!</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/widget/image-selector.cpp" line="191"/>
|
||
<source>Delete image</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>删除壁纸</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/widget/image-selector.cpp" line="192"/>
|
||
<source>Are you sure you want to delete this picture?</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>您确定要删除此壁纸?</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -108,22 +93,22 @@
|
||
<message>
|
||
<location filename="../src/kiran-cpanel-appearance.ui" line="14"/>
|
||
<source>KiranCpanelAppearance</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/kiran-cpanel-appearance.cpp" line="53"/>
|
||
<source>Wallpaper Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>壁纸设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/kiran-cpanel-appearance.cpp" line="54"/>
|
||
<source>Theme Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>主题设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/kiran-cpanel-appearance.cpp" line="55"/>
|
||
<source>Font Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>字体设置</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -133,45 +118,60 @@
|
||
<location filename="../src/pages/theme/themes.cpp" line="140"/>
|
||
<location filename="../src/pages/theme/themes.cpp" line="185"/>
|
||
<source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/font/fonts.cpp" line="144"/>
|
||
<source>Set font failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>设置字体失败!</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="141"/>
|
||
<source>Get icon themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>获取图标主题失败!</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="186"/>
|
||
<source>Get cursor themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>获取光标主题失败!</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="226"/>
|
||
<source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>警告</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="227"/>
|
||
<source>There is no theme to set!</source>
|
||
+ <translation>目前没有主题可以设置!</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>SettingBriefWidget</name>
|
||
+ <message>
|
||
+ <location filename="../src/common/setting-brief-widget.ui" line="26"/>
|
||
+ <source>Form</source>
|
||
+ <translation type="unfinished"></translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/common/setting-brief-widget.ui" line="47"/>
|
||
+ <location filename="../src/common/setting-brief-widget.ui" line="67"/>
|
||
+ <location filename="../src/common/setting-brief-widget.ui" line="74"/>
|
||
+ <source>TextLabel</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
<name>ThemeWidget</name>
|
||
<message>
|
||
- <location filename="../src/pages/theme/theme-widget.cpp" line="134"/>
|
||
+ <location filename="../src/pages/theme/theme-widget.cpp" line="145"/>
|
||
<source>Dark Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>深色主题</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/theme/theme-widget.cpp" line="139"/>
|
||
+ <location filename="../src/pages/theme/theme-widget.cpp" line="150"/>
|
||
<source>Light Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>浅色主题</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -179,38 +179,38 @@
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.ui" line="81"/>
|
||
<source>Dark and Light Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>深浅色主题设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.ui" line="109"/>
|
||
<source>Themes Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>主题设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.ui" line="149"/>
|
||
<source>Open Window Effects</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>打开或关闭窗口特效</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="124"/>
|
||
<source>Choose icon themes</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择图标主题</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="130"/>
|
||
<location filename="../src/pages/theme/themes.cpp" line="176"/>
|
||
<source>Unknown</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>未知</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/theme/themes.cpp" line="170"/>
|
||
<source>Choose cursor themes</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择光标主题</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -218,74 +218,74 @@
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="68"/>
|
||
<source>Set wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>壁纸设置</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="137"/>
|
||
<source>Desktop Wallpaper Preview</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>桌面壁纸预览</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="147"/>
|
||
<source>Lock Screen WallPaper Preview</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>锁屏壁纸预览</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="166"/>
|
||
<source>Select wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择壁纸</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/wallpaper/wallpaper.ui" line="220"/>
|
||
<source>Select Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择壁纸</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="105"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="107"/>
|
||
<source>Set Desktop Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择桌面壁纸</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="121"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="123"/>
|
||
<source>Set Lock Screen Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择锁屏壁纸</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="161"/>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="173"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="163"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="175"/>
|
||
<source>set wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>壁纸设置</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="161"/>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="173"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="163"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="175"/>
|
||
<source>Set wallpaper failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>壁纸设置失败!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="184"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="186"/>
|
||
<source>select picture</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择图片</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="186"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="188"/>
|
||
<source>image files(*.bmp *.jpg *.png *.tif *.gif *.pcx *.tga *.exif *.fpx *.svg *.psd *.cdr *.pcd *.dxf *.ufo *.eps *.ai *.raw *.WMF *.webp)</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="206"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="208"/>
|
||
<source>Add Image Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加壁纸失败</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/wallpaper/wallpaper.cpp" line="207"/>
|
||
+ <location filename="../src/pages/wallpaper/wallpaper.cpp" line="209"/>
|
||
<source>The image already exists!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>该壁纸已存在!</translation>
|
||
</message>
|
||
</context>
|
||
</TS>
|
||
diff --git a/plugins/keybinding/CMakeLists.txt b/plugins/keybinding/CMakeLists.txt
|
||
index 01a97cb..0368c82 100644
|
||
--- a/plugins/keybinding/CMakeLists.txt
|
||
+++ b/plugins/keybinding/CMakeLists.txt
|
||
@@ -41,8 +41,8 @@ target_link_libraries(${TARGET_NAME}
|
||
install(TARGETS ${TARGET_NAME}
|
||
DESTINATION ${PLUGIN_LIBS_INSTALL_DIR}/)
|
||
|
||
-install(FILES ${QM_FILES}
|
||
- DESTINATION ${TRANSLATIONS_DIR})
|
||
+install(FILES ${KEYBINDING_QM_FILES}
|
||
+ DESTINATION ${INSTALL_DATADIR}/kiran-cpanel-keybinding/translations/)
|
||
|
||
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/data/kiran-cpanel-keybinding.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/kiran-cpanel-keybinding.desktop)
|
||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kiran-cpanel-keybinding.desktop DESTINATION ${PLUGIN_DESKTOP_INSTALL_DIR}/)
|
||
\ No newline at end of file
|
||
diff --git a/plugins/keybinding/src/main.cpp b/plugins/keybinding/src/main.cpp
|
||
index 106ba18..f316402 100644
|
||
--- a/plugins/keybinding/src/main.cpp
|
||
+++ b/plugins/keybinding/src/main.cpp
|
||
@@ -45,7 +45,21 @@ public:
|
||
KLOG_INFO() << "Connect keybinding dbus service failed!";
|
||
return -1;
|
||
}
|
||
- //TODO:统一修改翻译文件的加载路径
|
||
+ m_translator = new QTranslator;
|
||
+ if (!m_translator->load(QLocale(),
|
||
+ "kiran-cpanel-keybinding",
|
||
+ ".",
|
||
+ "/usr/share/kiran-cpanel-keybinding/translations/",
|
||
+ ".qm"))
|
||
+ {
|
||
+ KLOG_DEBUG() << "Kiran cpanel keybinding load translation failed";
|
||
+ m_translator->deleteLater();
|
||
+ m_translator = nullptr;
|
||
+ }
|
||
+ else
|
||
+ {
|
||
+ QCoreApplication::installTranslator(m_translator);
|
||
+ }
|
||
return 0;
|
||
};
|
||
|
||
@@ -102,6 +116,7 @@ public:
|
||
|
||
private:
|
||
QWidget* m_currentWidget = nullptr;
|
||
+ QTranslator* m_translator = nullptr;
|
||
};
|
||
|
||
#include "main.moc"
|
||
\ No newline at end of file
|
||
diff --git a/plugins/keybinding/translation/kiran-cpanel-keybinding.zh_CN.ts b/plugins/keybinding/translation/kiran-cpanel-keybinding.zh_CN.ts
|
||
index c57c397..13c3edf 100644
|
||
--- a/plugins/keybinding/translation/kiran-cpanel-keybinding.zh_CN.ts
|
||
+++ b/plugins/keybinding/translation/kiran-cpanel-keybinding.zh_CN.ts
|
||
@@ -6,12 +6,12 @@
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="128"/>
|
||
<source>None</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>暂无</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="132"/>
|
||
<source>disabled</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>禁用</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -19,87 +19,87 @@
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="57"/>
|
||
<source>Audio Play</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频播放</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="58"/>
|
||
<source>Search</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>搜索</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="59"/>
|
||
<source>WWW</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>万维网</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="60"/>
|
||
<source>Audio Lower Volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>减小音量</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="61"/>
|
||
<source>Audio Raise Volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>增大音量</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="62"/>
|
||
<source>Mic Mute</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>输入静音</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="63"/>
|
||
<source>Audio Stop</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频停止</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="64"/>
|
||
<source>Explorer</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>浏览</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="65"/>
|
||
<source>Calculator</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>计算器</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="66"/>
|
||
<source>Audio Mute</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频暂停</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="67"/>
|
||
<source>Audio Pause</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频暂停</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="68"/>
|
||
<source>Audio Prev</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频上一个</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="69"/>
|
||
<source>Audio Media</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频媒体</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="70"/>
|
||
<source>Audio Next</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>音频下一个</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="71"/>
|
||
<source>Mail</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>邮件</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="72"/>
|
||
<source>Tools</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>工具</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/keycode-translator.cpp" line="73"/>
|
||
<source>Eject</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>弹出</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -107,201 +107,201 @@
|
||
<message>
|
||
<location filename="../src/shortcut.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="172"/>
|
||
+ <location filename="../src/shortcut.ui" line="175"/>
|
||
<source>Custom</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>自定义</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="204"/>
|
||
- <location filename="../src/shortcut.cpp" line="156"/>
|
||
- <location filename="../src/shortcut.cpp" line="548"/>
|
||
+ <location filename="../src/shortcut.ui" line="207"/>
|
||
+ <location filename="../src/shortcut.cpp" line="158"/>
|
||
+ <location filename="../src/shortcut.cpp" line="550"/>
|
||
<source>Edit</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>编辑</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="334"/>
|
||
- <location filename="../src/shortcut.ui" line="524"/>
|
||
- <location filename="../src/shortcut.cpp" line="102"/>
|
||
- <location filename="../src/shortcut.cpp" line="113"/>
|
||
+ <location filename="../src/shortcut.ui" line="340"/>
|
||
+ <location filename="../src/shortcut.ui" line="533"/>
|
||
+ <location filename="../src/shortcut.cpp" line="104"/>
|
||
+ <location filename="../src/shortcut.cpp" line="115"/>
|
||
<source>Add</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="366"/>
|
||
+ <location filename="../src/shortcut.ui" line="375"/>
|
||
<source>Reset</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>重置</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="412"/>
|
||
+ <location filename="../src/shortcut.ui" line="421"/>
|
||
<source>Custom Shortcut Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>自定义快捷键名称</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="442"/>
|
||
+ <location filename="../src/shortcut.ui" line="451"/>
|
||
<source>Custom Shortcut application</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>自定义快捷键应用程序</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="472"/>
|
||
+ <location filename="../src/shortcut.ui" line="481"/>
|
||
<source>Custom Shortcut Key</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>自定义快捷键</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="556"/>
|
||
+ <location filename="../src/shortcut.ui" line="568"/>
|
||
<source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>取消</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="602"/>
|
||
+ <location filename="../src/shortcut.ui" line="614"/>
|
||
<source>Shortcut Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>快捷键名称</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="645"/>
|
||
+ <location filename="../src/shortcut.ui" line="657"/>
|
||
<source>Shortcut application</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>快捷键应用程序</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="676"/>
|
||
+ <location filename="../src/shortcut.ui" line="688"/>
|
||
<source>Shortcut key</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>快捷键</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="728"/>
|
||
+ <location filename="../src/shortcut.ui" line="740"/>
|
||
<source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>保存</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.ui" line="760"/>
|
||
+ <location filename="../src/shortcut.ui" line="775"/>
|
||
<source>return</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>返回</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="84"/>
|
||
+ <location filename="../src/shortcut.cpp" line="86"/>
|
||
<source>Please enter a search keyword...</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>请输入搜索关键字...</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="96"/>
|
||
+ <location filename="../src/shortcut.cpp" line="98"/>
|
||
<source>Required</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>必填</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="122"/>
|
||
- <location filename="../src/shortcut.cpp" line="128"/>
|
||
+ <location filename="../src/shortcut.cpp" line="124"/>
|
||
+ <location filename="../src/shortcut.cpp" line="130"/>
|
||
<source>Please press the new shortcut key</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>请输入新快捷键</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="154"/>
|
||
+ <location filename="../src/shortcut.cpp" line="156"/>
|
||
<source>Finished</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>完成</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="652"/>
|
||
- <location filename="../src/shortcut.cpp" line="702"/>
|
||
- <location filename="../src/shortcut.cpp" line="723"/>
|
||
- <location filename="../src/shortcut.cpp" line="758"/>
|
||
- <location filename="../src/shortcut.cpp" line="778"/>
|
||
- <location filename="../src/shortcut.cpp" line="802"/>
|
||
- <location filename="../src/shortcut.cpp" line="822"/>
|
||
+ <location filename="../src/shortcut.cpp" line="654"/>
|
||
+ <location filename="../src/shortcut.cpp" line="704"/>
|
||
+ <location filename="../src/shortcut.cpp" line="725"/>
|
||
+ <location filename="../src/shortcut.cpp" line="760"/>
|
||
+ <location filename="../src/shortcut.cpp" line="780"/>
|
||
+ <location filename="../src/shortcut.cpp" line="804"/>
|
||
+ <location filename="../src/shortcut.cpp" line="824"/>
|
||
<source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="297"/>
|
||
+ <location filename="../src/shortcut.cpp" line="299"/>
|
||
<source>Get shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>获取快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="209"/>
|
||
+ <location filename="../src/shortcut.cpp" line="211"/>
|
||
<source>failed to load shortcut key data!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>加载快捷键数据失败!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="251"/>
|
||
+ <location filename="../src/shortcut.cpp" line="253"/>
|
||
<source>List shortcut failed,error:%1</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>列出快捷键失败,错误:%1</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="296"/>
|
||
+ <location filename="../src/shortcut.cpp" line="298"/>
|
||
<source>Error</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>错误</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="370"/>
|
||
+ <location filename="../src/shortcut.cpp" line="372"/>
|
||
<source>Open File</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>打开文件</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="600"/>
|
||
+ <location filename="../src/shortcut.cpp" line="602"/>
|
||
<source>System</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>系统</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="602"/>
|
||
+ <location filename="../src/shortcut.cpp" line="604"/>
|
||
<source>Sound</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>声音</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="653"/>
|
||
+ <location filename="../src/shortcut.cpp" line="655"/>
|
||
<source>Delete shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>删除快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="666"/>
|
||
- <location filename="../src/shortcut.cpp" line="741"/>
|
||
+ <location filename="../src/shortcut.cpp" line="668"/>
|
||
+ <location filename="../src/shortcut.cpp" line="743"/>
|
||
<source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>警告</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="667"/>
|
||
- <location filename="../src/shortcut.cpp" line="742"/>
|
||
+ <location filename="../src/shortcut.cpp" line="669"/>
|
||
+ <location filename="../src/shortcut.cpp" line="744"/>
|
||
<source>Please complete the shortcut information!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>请完善快捷键信息!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="676"/>
|
||
+ <location filename="../src/shortcut.cpp" line="678"/>
|
||
<source>Set shortcut</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>设置快捷键</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="677"/>
|
||
+ <location filename="../src/shortcut.cpp" line="679"/>
|
||
<source>Are you sure you want to disable this shortcut?</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>是否确定要禁用此快捷键?</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="703"/>
|
||
+ <location filename="../src/shortcut.cpp" line="705"/>
|
||
<source>Modify system shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>修改系统快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="724"/>
|
||
+ <location filename="../src/shortcut.cpp" line="726"/>
|
||
<source>Modify custom shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>修改自定义快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="759"/>
|
||
+ <location filename="../src/shortcut.cpp" line="761"/>
|
||
<source>Add custom shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加自定义快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="779"/>
|
||
+ <location filename="../src/shortcut.cpp" line="781"/>
|
||
<source>Reset shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>重置快捷键失败,错误:</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="803"/>
|
||
+ <location filename="../src/shortcut.cpp" line="805"/>
|
||
<source>Cannot use shortcut "%1", Because you cannot enter with this key.Please try again using Ctrl, Alt, or Shift at the same time.</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>无法使用快捷键"%1",因为使用此键将无法输入,请同时使用Ctrl,Alt,Shift再试一次。</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/shortcut.cpp" line="823"/>
|
||
+ <location filename="../src/shortcut.cpp" line="825"/>
|
||
<source>Shortcut keys %1 are already used in %2,Please try again!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>快捷键%1已用于%2,请再试一次!</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -309,13 +309,13 @@
|
||
<message>
|
||
<location filename="../src/shortcut-item.ui" line="32"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/shortcut-item.ui" line="53"/>
|
||
<location filename="../src/shortcut-item.ui" line="73"/>
|
||
<source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -323,12 +323,12 @@
|
||
<message>
|
||
<location filename="../src/thread-object.cpp" line="134"/>
|
||
<source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/thread-object.cpp" line="135"/>
|
||
<source>List shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>列出快捷键失败,错误:</translation>
|
||
</message>
|
||
</context>
|
||
</TS>
|
||
diff --git a/plugins/keyboard/CMakeLists.txt b/plugins/keyboard/CMakeLists.txt
|
||
index 6a29efc..7d8336f 100644
|
||
--- a/plugins/keyboard/CMakeLists.txt
|
||
+++ b/plugins/keyboard/CMakeLists.txt
|
||
@@ -50,5 +50,5 @@ install(TARGETS ${TARGET_NAME}
|
||
install(FILES data/kiran-cpanel-keyboard.desktop
|
||
DESTINATION ${PLUGIN_DESKTOP_INSTALL_DIR}/)
|
||
|
||
-install(FILES ${QM_FILES}
|
||
+install(FILES ${KEYBOARD_QM}
|
||
DESTINATION ${INSTALL_DATADIR}/kiran-cpanel-keyboard/translations/)
|
||
diff --git a/plugins/keyboard/translation/kiran-cpanel-keyboard.zh_CN.ts b/plugins/keyboard/translation/kiran-cpanel-keyboard.zh_CN.ts
|
||
index 2884c45..afb18f2 100644
|
||
--- a/plugins/keyboard/translation/kiran-cpanel-keyboard.zh_CN.ts
|
||
+++ b/plugins/keyboard/translation/kiran-cpanel-keyboard.zh_CN.ts
|
||
@@ -6,7 +6,7 @@
|
||
<message>
|
||
<location filename="../src/pages/layout/choose-item.ui" line="35"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -14,53 +14,53 @@
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="40"/>
|
||
<source>Repeat Key</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>重复键</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="47"/>
|
||
<source>(Repeat a key while holding it down)</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>(按住某一键时重复该键)</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="83"/>
|
||
<source>Delay</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>延时</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="126"/>
|
||
<source>Short</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>短</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="146"/>
|
||
<source>Long</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>长</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="164"/>
|
||
<source>Interval</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>速度</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="210"/>
|
||
<source>Slow</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>慢</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="230"/>
|
||
<source>Fast</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>快</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/general/general-page.ui" line="246"/>
|
||
<location filename="../src/pages/general/general-page.cpp" line="51"/>
|
||
<source>Enter characters to test the settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>输入字符来测试设置</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -68,7 +68,7 @@
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-item.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -76,7 +76,7 @@
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-list.ui" line="20"/>
|
||
<source>LayoutList</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -84,80 +84,80 @@
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="14"/>
|
||
<source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="67"/>
|
||
<source>Select Kayboard Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>选择布局</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="105"/>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="382"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="383"/>
|
||
<source>Edit</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>编辑</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="206"/>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="264"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="265"/>
|
||
<source>Add Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加布局</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="297"/>
|
||
<source>Addition</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>添加</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/pages/layout/layout-page.ui" line="338"/>
|
||
<source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>返回</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="111"/>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="286"/>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="325"/>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="358"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="112"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="287"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="326"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="359"/>
|
||
<source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>失败</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="111"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="112"/>
|
||
<source>You have added this keyboard layout!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>您已经添加过该布局</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="287"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="288"/>
|
||
<source>The %1 keyboard layout does not exist!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>该 %1 键盘布局不存在!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="326"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="327"/>
|
||
<source>The keyboard layout is currently in use and cannot be deleted!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>该布局目前正在使用,无法删除!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="338"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="339"/>
|
||
<source>Delete Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>删除布局</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="359"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="360"/>
|
||
<source>You do not appear to have added %1 keyboard layout!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>您似乎没有添加 %1 键盘布局!</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-page.cpp" line="373"/>
|
||
+ <location filename="../src/pages/layout/layout-page.cpp" line="374"/>
|
||
<source>Finish</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>完成</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
<name>QObject</name>
|
||
<message>
|
||
- <location filename="../src/pages/layout/layout-list.cpp" line="137"/>
|
||
+ <location filename="../src/pages/layout/layout-list.cpp" line="140"/>
|
||
<source>No search results, please search again...</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <translation>无搜索结果,请重新搜索...</translation>
|
||
</message>
|
||
</context>
|
||
</TS>
|
||
diff --git a/plugins/mouse/translations/kiran-cpanel-mouse.zh_CN.ts b/plugins/mouse/translations/kiran-cpanel-mouse.zh_CN.ts
|
||
index 39cc633..e071184 100644
|
||
--- a/plugins/mouse/translations/kiran-cpanel-mouse.zh_CN.ts
|
||
+++ b/plugins/mouse/translations/kiran-cpanel-mouse.zh_CN.ts
|
||
@@ -1,41 +1,6 @@
|
||
<?xml version="1.0" encoding="utf-8"?>
|
||
<!DOCTYPE TS>
|
||
<TS version="2.1" language="zh_CN">
|
||
-<context>
|
||
- <name>CreateUserPage</name>
|
||
- <message>
|
||
- <source>Cancel</source>
|
||
- <translation type="obsolete">取消</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>CursorThemes</name>
|
||
- <message>
|
||
- <source>Faild</source>
|
||
- <translation type="obsolete">失败</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>IconThemes</name>
|
||
- <message>
|
||
- <source>Faild</source>
|
||
- <translation type="obsolete">失败</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KcpInterface</name>
|
||
- <message>
|
||
- <source>warning</source>
|
||
- <translation type="obsolete">警告</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranAvatarEditor</name>
|
||
- <message>
|
||
- <source>Cancel</source>
|
||
- <translation type="obsolete">取消</translation>
|
||
- </message>
|
||
-</context>
|
||
<context>
|
||
<name>KiranCPanelMouse</name>
|
||
<message>
|
||
@@ -149,41 +114,60 @@
|
||
<source>Fast</source>
|
||
<translation type="vanished">快速</translation>
|
||
</message>
|
||
+ <message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_kiran-cpanel-mouse-widget.h" line="99"/>
|
||
+ <source>Form</source>
|
||
+ <translation type="unfinished"></translation>
|
||
+ </message>
|
||
</context>
|
||
<context>
|
||
<name>MousePage</name>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="14"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="226"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="226"/>
|
||
<source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="83"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="227"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="227"/>
|
||
<source>Select Mouse Hand</source>
|
||
<translation>选择鼠标手持模式</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="132"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="228"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="228"/>
|
||
<source>Mouse Motion Acceleration</source>
|
||
<translation>鼠标移动加速</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="186"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="229"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="229"/>
|
||
<source>Slow</source>
|
||
<translation>慢</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="206"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="230"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="230"/>
|
||
<source>Fast</source>
|
||
<translation>快</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="243"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="231"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="231"/>
|
||
<source>Natural Scroll</source>
|
||
<translation>是否为自然滚动</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/mouse-page.ui" line="277"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="233"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-page.h" line="233"/>
|
||
<source>Middle Emulation Enabled</source>
|
||
<translation>同时按下左右键模拟中键</translation>
|
||
</message>
|
||
@@ -201,20 +185,29 @@
|
||
<context>
|
||
<name>MouseSettings</name>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="226"/>
|
||
+ <source>Form</source>
|
||
+ <translation type="unfinished"></translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="227"/>
|
||
<source>Select Mouse Hand</source>
|
||
- <translation type="vanished">选择鼠标手持模式</translation>
|
||
+ <translation>选择鼠标手持模式</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="228"/>
|
||
<source>Mouse Motion Acceleration</source>
|
||
- <translation type="vanished">鼠标移动加速</translation>
|
||
+ <translation>鼠标移动加速</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="231"/>
|
||
<source>Natural Scroll</source>
|
||
- <translation type="vanished">是否为自然滚动</translation>
|
||
+ <translation>是否为自然滚动</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="233"/>
|
||
<source>Middle Emulation Enabled</source>
|
||
- <translation type="vanished">同时按下左右键模拟中键</translation>
|
||
+ <translation>同时按下左右键模拟中键</translation>
|
||
</message>
|
||
<message>
|
||
<source>Right Hand Mode</source>
|
||
@@ -225,16 +218,18 @@
|
||
<translation type="vanished">左手模式</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="229"/>
|
||
<source>Slow</source>
|
||
- <translation type="vanished">慢</translation>
|
||
+ <translation>慢</translation>
|
||
</message>
|
||
<message>
|
||
<source>Standard</source>
|
||
<translation type="vanished">标准</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_mouse-settings.h" line="230"/>
|
||
<source>Fast</source>
|
||
- <translation type="vanished">快</translation>
|
||
+ <translation>快</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
@@ -268,75 +263,82 @@
|
||
<translation type="vanished">加载qss文件失败!</translation>
|
||
</message>
|
||
</context>
|
||
-<context>
|
||
- <name>Shortcut</name>
|
||
- <message>
|
||
- <source>Reset</source>
|
||
- <translation type="obsolete">重置</translation>
|
||
- </message>
|
||
- <message>
|
||
- <source>Cancel</source>
|
||
- <translation type="obsolete">取消</translation>
|
||
- </message>
|
||
- <message>
|
||
- <source>Save</source>
|
||
- <translation type="obsolete">保存</translation>
|
||
- </message>
|
||
-</context>
|
||
<context>
|
||
<name>TouchPadPage</name>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="14"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="320"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="320"/>
|
||
<source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="83"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="321"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="321"/>
|
||
<source>TouchPad Enabled</source>
|
||
<translation>开启触摸板</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="131"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="323"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="323"/>
|
||
<source>Select TouchPad Hand</source>
|
||
<translation>选择触摸板使用模式</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="180"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="324"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="324"/>
|
||
<source>TouchPad Motion Acceleration</source>
|
||
<translation>触摸板移动加速</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="223"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="325"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="325"/>
|
||
<source>Slow</source>
|
||
<translation>慢</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="243"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="326"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="326"/>
|
||
<source>Fast</source>
|
||
<translation>快</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="273"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="327"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="327"/>
|
||
<source>Select Click Method</source>
|
||
<translation>设置点击触摸板方式</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="317"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="328"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="328"/>
|
||
<source>Select Scroll Method</source>
|
||
<translation>滚动窗口方式</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="361"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="329"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="329"/>
|
||
<source>Natural Scroll</source>
|
||
<translation>是否为自然滚动</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="409"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="331"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="331"/>
|
||
<source>Enabled while Typing</source>
|
||
<translation>打字时触摸板禁用</translation>
|
||
</message>
|
||
<message>
|
||
<location filename="../src/touchpad-page.ui" line="457"/>
|
||
+ <location filename="../build/src/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="333"/>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-page.h" line="333"/>
|
||
<source>Tap to Click</source>
|
||
<translation>轻击(不按下)触摸板功能是否生效</translation>
|
||
</message>
|
||
@@ -382,48 +384,63 @@
|
||
<translation type="vanished">禁用触摸板</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="320"/>
|
||
+ <source>Form</source>
|
||
+ <translation type="unfinished"></translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="321"/>
|
||
<source>TouchPad Enabled</source>
|
||
- <translation type="vanished">开启触摸板</translation>
|
||
+ <translation>开启触摸板</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="323"/>
|
||
<source>Select TouchPad Hand</source>
|
||
- <translation type="vanished">选择触摸板使用模式</translation>
|
||
+ <translation>选择触摸板使用模式</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="324"/>
|
||
<source>TouchPad Motion Acceleration</source>
|
||
- <translation type="vanished">触摸板移动加速</translation>
|
||
+ <translation>触摸板移动加速</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="327"/>
|
||
<source>Select Click Method</source>
|
||
- <translation type="vanished">设置点击触摸板方式</translation>
|
||
+ <translation>设置点击触摸板方式</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="328"/>
|
||
<source>Select Scroll Method</source>
|
||
- <translation type="vanished">滚动窗口方式</translation>
|
||
+ <translation>滚动窗口方式</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="329"/>
|
||
<source>Natural Scroll</source>
|
||
- <translation type="vanished">是否为自然滚动</translation>
|
||
+ <translation>是否为自然滚动</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="331"/>
|
||
<source>Enabled while Typing</source>
|
||
- <translation type="vanished">打字时触摸板禁用</translation>
|
||
+ <translation>打字时触摸板禁用</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="333"/>
|
||
<source>Tap to Click</source>
|
||
- <translation type="vanished">轻击(不按下)触摸板功能是否生效</translation>
|
||
+ <translation>轻击(不按下)触摸板功能是否生效</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="325"/>
|
||
<source>Slow</source>
|
||
- <translation type="vanished">慢</translation>
|
||
+ <translation>慢</translation>
|
||
</message>
|
||
<message>
|
||
<source>Standard</source>
|
||
<translation type="vanished">标准</translation>
|
||
</message>
|
||
<message>
|
||
+ <location filename="../build-kiran-cpanel-mouse-qt5_11-Debug/ui_touchpad-settings.h" line="326"/>
|
||
<source>Fast</source>
|
||
- <translation type="vanished">快</translation>
|
||
+ <translation>快</translation>
|
||
</message>
|
||
<message>
|
||
<source>Right Hand Mode</source>
|
||
@@ -450,15 +467,4 @@
|
||
<translation type="vanished">边缘滑动</translation>
|
||
</message>
|
||
</context>
|
||
-<context>
|
||
- <name>UserInfoPage</name>
|
||
- <message>
|
||
- <source>Save</source>
|
||
- <translation type="obsolete">保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <source>Cancel</source>
|
||
- <translation type="obsolete">取消</translation>
|
||
- </message>
|
||
-</context>
|
||
</TS>
|
||
diff --git a/plugins/timedate/CMakeLists.txt b/plugins/timedate/CMakeLists.txt
|
||
index de54a93..02805dc 100644
|
||
--- a/plugins/timedate/CMakeLists.txt
|
||
+++ b/plugins/timedate/CMakeLists.txt
|
||
@@ -12,14 +12,14 @@ pkg_search_module(KIRAN_STYLE_HELPER REQUIRED kiran-style-helper)
|
||
file(GLOB_RECURSE SRC
|
||
"src/*.cpp"
|
||
"src/*.h")
|
||
-
|
||
+
|
||
include_directories("${CMAKE_BINARY_DIR}" "src" )
|
||
-qt5_create_translation( QM_FILES ${CMAKE_SOURCE_DIR} translations/kiran-cpanel-timedate.zh_CN.ts )
|
||
+qt5_create_translation( TIMEDATE_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} "translations/kiran-cpanel-timedate.zh_CN.ts" )
|
||
|
||
add_library(${TARGET_NAME} SHARED
|
||
${SRC}
|
||
${QRC}
|
||
- ${QM_FILES})
|
||
+ ${TIMEDATE_QM_FILES})
|
||
|
||
target_include_directories(${TARGET_NAME} PRIVATE
|
||
include
|
||
@@ -54,6 +54,6 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kiran-cpanel-timedate.desktop DESTINAT
|
||
install(TARGETS ${TARGET_NAME} DESTINATION ${PLUGIN_LIBS_INSTALL_DIR})
|
||
|
||
#安装翻译文件
|
||
-set(TRANSLATE_INSTALL_DIR ${INSTALL_DATADIR}/${PROJECT_NAME}/translations/)
|
||
+set(TRANSLATE_INSTALL_DIR ${INSTALL_DATADIR}/${TARGET_NAME}/translations/)
|
||
configure_file(./config/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/kcp-timedate-config.h @ONLY)
|
||
-install(FILES ${QM_FILES} DESTINATION ${TRANSLATE_INSTALL_DIR} )
|
||
+install(FILES ${TIMEDATE_QM_FILES} DESTINATION ${TRANSLATE_INSTALL_DIR} )
|
||
diff --git a/plugins/timedate/translations/kiran-cpanel-timedate.zh_CN.ts b/plugins/timedate/translations/kiran-cpanel-timedate.zh_CN.ts
|
||
index 5f5c6df..8aabda0 100644
|
||
--- a/plugins/timedate/translations/kiran-cpanel-timedate.zh_CN.ts
|
||
+++ b/plugins/timedate/translations/kiran-cpanel-timedate.zh_CN.ts
|
||
@@ -2,4094 +2,235 @@
|
||
<!DOCTYPE TS>
|
||
<TS version="2.1" language="zh_CN">
|
||
<context>
|
||
- <name>AccountItemWidget</name>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/account-itemwidget.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_account-itemwidget.h" line="83"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_account-itemwidget.h" line="83"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/account-itemwidget.ui" line="63"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_account-itemwidget.h" line="84"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_account-itemwidget.h" line="84"/>
|
||
- <source>Tom Hardy</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/account-itemwidget.cpp" line="36"/>
|
||
- <source>Create new user</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/account-itemwidget.cpp" line="108"/>
|
||
- <source>disable</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/account-itemwidget.cpp" line="112"/>
|
||
- <source>enable</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>AdvanceSettings</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="203"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="203"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="43"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="204"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="204"/>
|
||
- <source>Login shell</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="89"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="205"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="205"/>
|
||
- <source>Specify user id</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="159"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="206"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="206"/>
|
||
- <source>Specify user home</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="262"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="207"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="207"/>
|
||
- <source>confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.ui" line="303"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="208"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_advance-settings.h" line="208"/>
|
||
- <source>cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>DateTimeSettings</name>
|
||
<message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="115"/>
|
||
- <source>Advance Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="148"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="148"/>
|
||
+ <source>DateTimeSettings</source>
|
||
+ <translation>日期时间设置</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="132"/>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="142"/>
|
||
- <source>Automatically generated by system</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="46"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="149"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="149"/>
|
||
+ <source>Select Time</source>
|
||
+ <translation>选择时间</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="173"/>
|
||
- <source>Please enter the correct path</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="88"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="150"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="150"/>
|
||
+ <source>Select Date</source>
|
||
+ <translation>选择日期</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="181"/>
|
||
- <source>Please enter specify user Id</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="152"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="151"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="151"/>
|
||
+ <source>save</source>
|
||
+ <translation>保存</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/advance-settings-page/advance-settings.cpp" line="189"/>
|
||
- <source>Please enter the correct home directory</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="190"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="152"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="152"/>
|
||
+ <source>reset</source>
|
||
+ <translation>重置</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>AudioSystemTray</name>
|
||
- <message>
|
||
- <location filename="../../audio/src/system-tray/audio-system-tray.cpp" line="89"/>
|
||
- <source>Volume Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>DaySpinBox</name>
|
||
<message>
|
||
- <location filename="../../audio/src/system-tray/audio-system-tray.cpp" line="90"/>
|
||
- <source>Mixed Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/widgets/date-spinbox.h" line="45"/>
|
||
+ <source>%1</source>
|
||
+ <translation>%1日</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>AuthManagerPage</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="179"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="179"/>
|
||
- <source>AuthManagerPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="50"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="180"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="180"/>
|
||
- <source>Fingerprint Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="97"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="181"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="181"/>
|
||
- <source>Face Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="140"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="182"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="182"/>
|
||
- <source>Password Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="214"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="183"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="183"/>
|
||
- <source>save</source>
|
||
- <translation type="unfinished">保存</translation>
|
||
- </message>
|
||
+ <name>DisplayFormatSettings</name>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.ui" line="255"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="184"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_auth-manager-page.h" line="184"/>
|
||
- <source>return</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="128"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="128"/>
|
||
+ <source>DisplayFormatSettings</source>
|
||
+ <translation>日期时间格式设置</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="160"/>
|
||
- <source>add fingerprint</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="46"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="129"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="129"/>
|
||
+ <source>Long date display format</source>
|
||
+ <translation>长日期显示格式</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="173"/>
|
||
- <source>add face</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="69"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="130"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="130"/>
|
||
+ <source>Short date display format</source>
|
||
+ <translation>短日期显示格式</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="190"/>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="340"/>
|
||
- <source>error</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="89"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="131"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="131"/>
|
||
+ <source>Time format</source>
|
||
+ <translation>时间格式</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="191"/>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="341"/>
|
||
- <source>please ensure that at least one authentication option exists</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="112"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="132"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="132"/>
|
||
+ <source>Show time witch seconds</source>
|
||
+ <translation>时间显示秒</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="504"/>
|
||
- <source>fingerprint_</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.cpp" line="53"/>
|
||
+ <source>24-hours</source>
|
||
+ <translation>二十四小时制</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/pages/auth-manager-page/auth-manager-page.cpp" line="504"/>
|
||
- <source>face_</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/display-format-settings/display-format-settings.cpp" line="54"/>
|
||
+ <source>12-hours</source>
|
||
+ <translation>十二小时制</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>BatterySettingsPage</name>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="159"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="159"/>
|
||
- <source>BatterySettingsPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.ui" line="43"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="160"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="160"/>
|
||
- <source>After idle for more than the following time, the computer will execute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.ui" line="76"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="161"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="161"/>
|
||
- <source>When the battery is lit up, it will be executed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.ui" line="106"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="162"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="162"/>
|
||
- <source>The monitor will turn off when it is idle</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.ui" line="136"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="163"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_battery-settings-page.h" line="163"/>
|
||
- <source>Reduce screen brightness when idle</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="68"/>
|
||
- <source>Display Off</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="69"/>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="85"/>
|
||
- <source>Suspend</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="70"/>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="86"/>
|
||
- <source>Shutdown</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="71"/>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="87"/>
|
||
- <source>Hibernate</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>KiranDatePickerWidget</name>
|
||
<message>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="72"/>
|
||
- <location filename="../../power/src/pages/battery-settings/battery-settings-page.cpp" line="88"/>
|
||
- <source>Do nothing</source>
|
||
+ <location filename="../src/widgets/kiran-date-picker-widget.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-date-picker-widget.h" line="103"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-date-picker-widget.h" line="103"/>
|
||
+ <source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>BiometricItem</name>
|
||
+ <name>KiranTimeDateWidget</name>
|
||
<message>
|
||
- <location filename="../../account/src/widgets/biometric-item.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="77"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="77"/>
|
||
- <source>BiometricItem</source>
|
||
+ <location filename="../src/kiran-timedate-widget.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="163"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="163"/>
|
||
+ <source>KiranTimeDateWidget</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/widgets/biometric-item.ui" line="35"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="78"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="78"/>
|
||
- <source>text</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/kiran-timedate-widget.ui" line="155"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="166"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="166"/>
|
||
+ <source>Automatic synchronizetion</source>
|
||
+ <translation>自动同步</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../account/src/widgets/biometric-item.ui" line="73"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="79"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_biometric-item.h" line="79"/>
|
||
- <source>add</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/kiran-timedate-widget.cpp" line="128"/>
|
||
+ <source>Change Time Zone</source>
|
||
+ <translation>更改时区</translation>
|
||
</message>
|
||
-</context>
|
||
-<context>
|
||
- <name>CPanelAudioWidget</name>
|
||
<message>
|
||
- <location filename="../../audio/src/plugin/cpanel-audio-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_cpanel-audio-widget.h" line="118"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_cpanel-audio-widget.h" line="118"/>
|
||
- <source>CPanelAudioWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/kiran-timedate-widget.cpp" line="139"/>
|
||
+ <source>Set Time Manually</source>
|
||
+ <translation>手动设置时间</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../audio/src/plugin/cpanel-audio-widget.cpp" line="40"/>
|
||
- <source>Output</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/kiran-timedate-widget.cpp" line="153"/>
|
||
+ <source>Time date format setting</source>
|
||
+ <translation>日期时间格式设置</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../audio/src/plugin/cpanel-audio-widget.cpp" line="41"/>
|
||
- <source>Input</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/kiran-timedate-widget.cpp" line="202"/>
|
||
+ <source>%1(%2)</source>
|
||
+ <translation>%1时间(%2)</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>CPanelNetworkWidget</name>
|
||
+ <name>KiranTimePickerWidget</name>
|
||
<message>
|
||
- <location filename="../../network/src/cpanel-network-widget.ui" line="20"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_cpanel-network-widget.h" line="85"/>
|
||
- <source>CPanelNetworkWidget</source>
|
||
+ <location filename="../src/widgets/kiran-time-picker-widget.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-time-picker-widget.h" line="135"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-time-picker-widget.h" line="135"/>
|
||
+ <source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>CPanelPowerWidget</name>
|
||
- <message>
|
||
- <location filename="../../power/src/cpanel-power-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_cpanel-power-widget.h" line="97"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_cpanel-power-widget.h" line="97"/>
|
||
- <source>CPanelPowerWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/cpanel-power-widget.cpp" line="65"/>
|
||
- <source>General Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>KiranTimeZone</name>
|
||
<message>
|
||
- <location filename="../../power/src/cpanel-power-widget.cpp" line="76"/>
|
||
- <source>Power Settings</source>
|
||
+ <location filename="../src/timezone/kiran-time-zone.ui" line="23"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone.h" line="121"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone.h" line="121"/>
|
||
+ <source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../power/src/cpanel-power-widget.cpp" line="89"/>
|
||
- <source>Battery Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/timezone/kiran-time-zone.cpp" line="79"/>
|
||
+ <source>Search in all time zones...</source>
|
||
+ <translation>在所有时区中搜索...</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>ChangeHostNameWidget</name>
|
||
+ <name>KiranTimeZoneItem</name>
|
||
<message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_change-host-name-widget.h" line="117"/>
|
||
+ <location filename="../src/widgets/kiran-time-zone-item.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-item.h" line="63"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-item.h" line="63"/>
|
||
<source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.ui" line="92"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_change-host-name-widget.h" line="118"/>
|
||
- <source>Host Name:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.ui" line="154"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_change-host-name-widget.h" line="119"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.ui" line="173"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_change-host-name-widget.h" line="120"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.cpp" line="58"/>
|
||
- <source>Host Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.cpp" line="75"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/change-host-name-widget.cpp" line="76"/>
|
||
- <source>Change host name failed! Please check the Dbus service!</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/widgets/kiran-time-zone-item.cpp" line="46"/>
|
||
+ <source>No search results, please search again...</source>
|
||
+ <translation>无搜索结果,请重新搜索...</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>ChooseItem</name>
|
||
+ <name>KiranTimeZoneList</name>
|
||
<message>
|
||
- <location filename="../../keyboard/src/pages/layout/choose-item.ui" line="35"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_choose-item.h" line="80"/>
|
||
+ <location filename="../src/timezone/kiran-time-zone-list.ui" line="20"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-list.h" line="71"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-list.h" line="71"/>
|
||
<source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>ConnectionDetailsWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="14"/>
|
||
- <source>ConnectionDetailsWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="50"/>
|
||
- <source>Security type</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="70"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="103"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="136"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="172"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="205"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="238"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="271"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="304"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="337"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="370"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="403"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="436"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="469"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="83"/>
|
||
- <source>Frequency band</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="116"/>
|
||
- <source>Channel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="152"/>
|
||
- <source>Interface</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="185"/>
|
||
- <source>MAC</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="218"/>
|
||
- <source>IPv4</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="251"/>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="383"/>
|
||
- <source>Gateway</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="284"/>
|
||
- <source>Preferred DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="317"/>
|
||
- <source>Subnet mask</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="350"/>
|
||
- <source>IPv6</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="416"/>
|
||
- <source>Prefix</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>MonthSpinBox</name>
|
||
<message>
|
||
- <location filename="../../network/src/plugin/connection-details-widget.ui" line="449"/>
|
||
- <source>Rate</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/widgets/date-spinbox.h" line="33"/>
|
||
+ <source>MMMM</source>
|
||
+ <translation type="unfinished">MMMM</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>ConnectionLists</name>
|
||
- <message>
|
||
- <location filename="../../network/src/connection-lists.cpp" line="90"/>
|
||
- <source>Tips</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>TimezoneSettings</name>
|
||
<message>
|
||
- <location filename="../../network/src/connection-lists.cpp" line="91"/>
|
||
- <source>Please input a network name</source>
|
||
+ <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="14"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="125"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="125"/>
|
||
+ <source>TimezoneSettings</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../network/src/connection-lists.cpp" line="386"/>
|
||
- <location filename="../../network/src/connection-lists.cpp" line="393"/>
|
||
- <source>Other WiFi networks</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="52"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="126"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="126"/>
|
||
+ <source>Select Time Zone</source>
|
||
+ <translation>选择时区</translation>
|
||
</message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ConnectionShowPage</name>
|
||
<message>
|
||
- <location filename="../../network/src/connection-show-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_connection-show-page.h" line="103"/>
|
||
- <source>ConnectionShowPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="116"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="127"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="127"/>
|
||
+ <source>save</source>
|
||
+ <translation>保存</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../network/src/connection-show-page.ui" line="35"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_connection-show-page.h" line="104"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/connection-show-page.ui" line="82"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_connection-show-page.h" line="105"/>
|
||
- <source>Create</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>CreateUserPage</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="286"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="286"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="101"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="287"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="287"/>
|
||
- <source>User name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="147"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="288"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="288"/>
|
||
- <source>User type</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="190"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="289"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="289"/>
|
||
- <source>Password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="239"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="290"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="290"/>
|
||
- <source>Confirm password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="294"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="291"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="291"/>
|
||
- <source>Advance setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="389"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="292"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="292"/>
|
||
- <source>Confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.ui" line="436"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="293"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_create-user-page.h" line="293"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="82"/>
|
||
- <source>standard</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="83"/>
|
||
- <source>administrator</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="106"/>
|
||
- <source>Please enter user name first</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="140"/>
|
||
- <source>Please enter your user name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="156"/>
|
||
- <source>user name cannot be a pure number</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="163"/>
|
||
- <source>user name already exists</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="175"/>
|
||
- <source>Please enter your password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="182"/>
|
||
- <source>Please enter the password again</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="189"/>
|
||
- <source>The password you enter must be the same as the former one</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="199"/>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="234"/>
|
||
- <source>Error</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/create-user-page/create-user-page.cpp" line="199"/>
|
||
- <source>Password encryption failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>CursorThemes</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/cursor-themes/cursor-themes.cpp" line="53"/>
|
||
- <source>Cursor Themes Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/cursor-themes/cursor-themes.cpp" line="214"/>
|
||
- <source>Faild</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/cursor-themes/cursor-themes.cpp" line="215"/>
|
||
- <source>Set cursor themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DateTimeSettings</name>
|
||
- <message>
|
||
- <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="148"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="148"/>
|
||
- <source>DateTimeSettings</source>
|
||
- <translation>日期时间设置</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="46"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="149"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="149"/>
|
||
- <source>Select Time</source>
|
||
- <translation>选择时间</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="88"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="150"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="150"/>
|
||
- <source>Select Date</source>
|
||
- <translation>选择日期</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="152"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="151"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="151"/>
|
||
- <source>save</source>
|
||
- <translation>保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/date-time-settings/date-time-settings.ui" line="193"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="152"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_date-time-settings.h" line="152"/>
|
||
+ <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="154"/>
|
||
+ <location filename="../build/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="128"/>
|
||
+ <location filename="../cmake-build-debug/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="128"/>
|
||
<source>reset</source>
|
||
<translation>重置</translation>
|
||
</message>
|
||
</context>
|
||
-<context>
|
||
- <name>DaySpinBox</name>
|
||
- <message>
|
||
- <location filename="../src/widgets/date-spinbox.h" line="45"/>
|
||
- <source>%1</source>
|
||
- <translation>%1日</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DetailsPage</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/details-page.ui" line="14"/>
|
||
- <source>DetailsPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/details-page.ui" line="56"/>
|
||
- <source>Network Details</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/details-page.ui" line="115"/>
|
||
- <source>Please select a connection</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DisconnectAndDeleteButton</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/disconnect-and-delete-button.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_disconnect-and-delete-button.h" line="53"/>
|
||
- <source>DisconnectAndDeleteButton</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/disconnect-and-delete-button.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_disconnect-and-delete-button.h" line="54"/>
|
||
- <source>Disconnect</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/disconnect-and-delete-button.ui" line="39"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_disconnect-and-delete-button.h" line="55"/>
|
||
- <source>Delete</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/disconnect-and-delete-button.cpp" line="80"/>
|
||
- <source>Are you sure you want to delete the connection %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/disconnect-and-delete-button.cpp" line="81"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DisplayFormatSettings</name>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="128"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="128"/>
|
||
- <source>DisplayFormatSettings</source>
|
||
- <translation>日期时间格式设置</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="46"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="129"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="129"/>
|
||
- <source>Long date display format</source>
|
||
- <translation>长日期显示格式</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="69"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="130"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="130"/>
|
||
- <source>Short date display format</source>
|
||
- <translation>短日期显示格式</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="89"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="131"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="131"/>
|
||
- <source>Time format</source>
|
||
- <translation>时间格式</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.ui" line="112"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="132"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_display-format-settings.h" line="132"/>
|
||
- <source>Show time witch seconds</source>
|
||
- <translation>时间显示秒</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.cpp" line="63"/>
|
||
- <source>24-hours</source>
|
||
- <translation>二十四小时制</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/display-format-settings/display-format-settings.cpp" line="64"/>
|
||
- <source>12-hours</source>
|
||
- <translation>十二小时制</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DnsWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/dns-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dns-widget.h" line="66"/>
|
||
- <source>DnsWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/dns-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dns-widget.h" line="67"/>
|
||
- <source>Preferred DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/dns-widget.ui" line="42"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dns-widget.h" line="68"/>
|
||
- <source>Alternate DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DslManager</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/dsl-manager.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dsl-manager.h" line="76"/>
|
||
- <source>DslManager</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/dsl-manager.cpp" line="33"/>
|
||
- <source>DSL</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>DslSettingPage</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/dsl-setting-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dsl-setting-page.h" line="99"/>
|
||
- <source>DslSettingPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/dsl-setting-page.ui" line="72"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dsl-setting-page.h" line="100"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/dsl-setting-page.ui" line="92"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_dsl-setting-page.h" line="101"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>EthernetWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ethernet-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ethernet-widget.h" line="93"/>
|
||
- <source>EthernetWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ethernet-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ethernet-widget.h" line="94"/>
|
||
- <source>MAC Address Of Ethernet Device</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ethernet-widget.ui" line="42"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ethernet-widget.h" line="95"/>
|
||
- <source>Ethernet Clone MAC Address</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ethernet-widget.ui" line="54"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ethernet-widget.h" line="96"/>
|
||
- <source>Custom MTU</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ethernet-widget.cpp" line="40"/>
|
||
- <source>No device specified</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>FaceEnrollDialog</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="123"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="123"/>
|
||
- <source>FaceEnrollDialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.ui" line="63"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="124"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="124"/>
|
||
- <source>balabalalbala...</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.ui" line="124"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="125"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="125"/>
|
||
- <source>save</source>
|
||
- <translation type="unfinished">保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.ui" line="162"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="126"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_face-enroll-dialog.h" line="126"/>
|
||
- <source>cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.cpp" line="69"/>
|
||
- <source>initializing face collection environment...</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.cpp" line="119"/>
|
||
- <source>failed to initialize face collection environment!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.cpp" line="130"/>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/face-enroll-dialog/face-enroll-dialog.cpp" line="141"/>
|
||
- <source>Failed to start collection</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>FingerprintEnrollDialog</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="132"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="132"/>
|
||
- <source>FingerprintEnrollDialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.ui" line="70"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="133"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="133"/>
|
||
- <source>balabalalbala...</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.ui" line="134"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="134"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="134"/>
|
||
- <source>save</source>
|
||
- <translation type="unfinished">保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.ui" line="172"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="135"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_fingerprint-enroll-dialog.h" line="135"/>
|
||
- <source>cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.cpp" line="49"/>
|
||
- <source>Finger Enroll</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.cpp" line="127"/>
|
||
- <source>This fingerprint is bound to the user(%1)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.cpp" line="129"/>
|
||
- <source>Info</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-dialog.cpp" line="154"/>
|
||
- <source>Error</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>FingerprintInputWorker</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/biometric-enroll-dialog/fingerprint-enroll-dialog/fingerprint-enroll-worker.cpp" line="78"/>
|
||
- <source>initializing fingerprint collection environment...</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Fonts</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_fonts.h" line="193"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.ui" line="76"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_fonts.h" line="194"/>
|
||
- <source>Application Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.ui" line="152"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_fonts.h" line="195"/>
|
||
- <source>Titlebar Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.ui" line="222"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_fonts.h" line="196"/>
|
||
- <source>Monospace Font Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>GeneralPage</name>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="220"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="40"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="221"/>
|
||
- <source>Repeat Key</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="47"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="222"/>
|
||
- <source>(Repeat a key while holding it down)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="83"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="224"/>
|
||
- <source>Delay</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="126"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="225"/>
|
||
- <source>Short</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="146"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="226"/>
|
||
- <source>Long</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="164"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="227"/>
|
||
- <source>Interval</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="210"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="228"/>
|
||
- <source>Slow</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="230"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="229"/>
|
||
- <source>Fast</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.ui" line="246"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_general-page.h" line="230"/>
|
||
- <location filename="../../keyboard/src/pages/general/general-page.cpp" line="51"/>
|
||
- <source>Enter characters to test the settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>GeneralSettingsPage</name>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="241"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="241"/>
|
||
- <source>GeneralSettingsPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="40"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="242"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="242"/>
|
||
- <source>When the power button is pressed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="64"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="243"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="243"/>
|
||
- <source>When the suspend button is pressed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="92"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="244"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="244"/>
|
||
- <source>When closing the lid</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="153"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="245"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="245"/>
|
||
- <source>Display brightness setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="173"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="246"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="246"/>
|
||
- <source>0%</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="201"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="247"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="247"/>
|
||
- <source>Regard computer as idle after</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.ui" line="264"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="249"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_general-settings-page.h" line="249"/>
|
||
- <source>Lock screen when idle</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="116"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="129"/>
|
||
- <source>shutdown</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="117"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="123"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="128"/>
|
||
- <source>hibernate</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="118"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="122"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="127"/>
|
||
- <source>suspend</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="119"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="124"/>
|
||
- <source>display off</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="120"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="125"/>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="130"/>
|
||
- <source>do nothing</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="188"/>
|
||
- <source>ERROR</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="367"/>
|
||
- <source>%1hour</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/general-settings/general-settings-page.cpp" line="371"/>
|
||
- <source>%1minute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>GeneralWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_general-widget.h" line="73"/>
|
||
- <source>GeneralWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_general-widget.h" line="74"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.ui" line="44"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_general-widget.h" line="75"/>
|
||
- <source>Auto Connection</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.cpp" line="75"/>
|
||
- <source>Wired Connection %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.cpp" line="114"/>
|
||
- <source>VPN L2TP %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/general-widget.cpp" line="117"/>
|
||
- <source>VPN PPTP %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>HardWorker</name>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="46"/>
|
||
- <source>Create User failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="147"/>
|
||
- <source> update password failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="173"/>
|
||
- <source>icon file</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="184"/>
|
||
- <source>userName type</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="195"/>
|
||
- <source>locked</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="203"/>
|
||
- <source>Failed to update user properties,%1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/hard-worker.cpp" line="226"/>
|
||
- <source>Failed to delete user,%1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>HardwareInformation</name>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="256"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="129"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="257"/>
|
||
- <source>CPU:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="149"/>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="209"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="258"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="260"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="189"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="259"/>
|
||
- <source>Memory:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="249"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="261"/>
|
||
- <source>Hard disk:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="327"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="262"/>
|
||
- <source>Graphics card:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.ui" line="402"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_hardware-information.h" line="263"/>
|
||
- <source>Network card:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.cpp" line="85"/>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.cpp" line="86"/>
|
||
- <location filename="../../system/src/pages/hardware-information/hardware-information.cpp" line="94"/>
|
||
- <source>Unknow</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>IconThemes</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/icon-themes/icon-themes.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_icon-themes.h" line="77"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/icon-themes/icon-themes.ui" line="35"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_icon-themes.h" line="78"/>
|
||
- <source>Icon Themes Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/icon-themes/icon-themes.cpp" line="257"/>
|
||
- <source>Faild</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/icon-themes/icon-themes.cpp" line="258"/>
|
||
- <source>Set icon themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ImageSelector</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/widget/image-selector.cpp" line="102"/>
|
||
- <source>Add Image Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/widget/image-selector.cpp" line="103"/>
|
||
- <source>The image already exists!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/widget/image-selector.cpp" line="191"/>
|
||
- <source>Delete image</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/widget/image-selector.cpp" line="192"/>
|
||
- <source>Are you sure you want to delete this picture?</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>InputDialog</name>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_input-dialog.h" line="99"/>
|
||
- <source>InputDialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_input-dialog.h" line="100"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_input-dialog.h" line="101"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_input-dialog.h" line="102"/>
|
||
- <source>Confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_input-dialog.h" line="103"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>InputPage</name>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/input-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="163"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="163"/>
|
||
- <source>InputPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/input-page.ui" line="40"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="164"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="164"/>
|
||
- <source>Input devices</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/input-page.ui" line="80"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="165"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="165"/>
|
||
- <source>Input volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/input-page.ui" line="148"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="167"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_input-page.h" line="167"/>
|
||
- <source>Feedback volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/input-page.cpp" line="240"/>
|
||
- <source>No input device detected</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Ipv4Widget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="126"/>
|
||
- <source>Ipv4Widget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="127"/>
|
||
- <source>IPV4 Method</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="60"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="128"/>
|
||
- <source>IP Address</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="70"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="129"/>
|
||
- <source>Net Mask</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="80"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="130"/>
|
||
- <source>Gateway</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="93"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="131"/>
|
||
- <source>Preferred DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.ui" line="103"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv4-widget.h" line="132"/>
|
||
- <source>Alternate DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.cpp" line="33"/>
|
||
- <source>Auto</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv4-widget.cpp" line="34"/>
|
||
- <source>Manual</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Ipv6Widget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="134"/>
|
||
- <source>Ipv6Widget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="37"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="135"/>
|
||
- <source>IPV6 Method</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="67"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="136"/>
|
||
- <source>IP Address</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="77"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="137"/>
|
||
- <source>Prefix</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="87"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="138"/>
|
||
- <source>Gateway</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="100"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="139"/>
|
||
- <source>Preferred DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.ui" line="110"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_ipv6-widget.h" line="140"/>
|
||
- <source>Alternate DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.cpp" line="33"/>
|
||
- <source>Auto</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.cpp" line="34"/>
|
||
- <source>Manual</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/ipv6-widget.cpp" line="35"/>
|
||
- <source>Ignored</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KeycodeTranslator</name>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="128"/>
|
||
- <source>None</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="132"/>
|
||
- <source>disabled</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranAccountManager</name>
|
||
- <message>
|
||
- <location filename="../../account/src/kiran-account-manager.cpp" line="98"/>
|
||
- <location filename="../../account/src/kiran-account-manager.cpp" line="420"/>
|
||
- <source>disable</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/kiran-account-manager.cpp" line="98"/>
|
||
- <location filename="../../account/src/kiran-account-manager.cpp" line="420"/>
|
||
- <source>enable</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/kiran-account-manager.cpp" line="235"/>
|
||
- <source>Create new user</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranAvatarEditor</name>
|
||
- <message>
|
||
- <location filename="../../account/avatar-editor/src/kiran-avatar-editor.cpp" line="41"/>
|
||
- <source>Avatar Editor</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/avatar-editor/src/kiran-avatar-editor.cpp" line="88"/>
|
||
- <source>Confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/avatar-editor/src/kiran-avatar-editor.cpp" line="109"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranCpanelAppearance</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/kiran-cpanel-appearance.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_kiran-cpanel-appearance.h" line="107"/>
|
||
- <source>KiranCpanelAppearance</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/kiran-cpanel-appearance.cpp" line="53"/>
|
||
- <source>Wallpaper Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/kiran-cpanel-appearance.cpp" line="54"/>
|
||
- <source>Theme Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/kiran-cpanel-appearance.cpp" line="55"/>
|
||
- <source>Font Setting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranDatePickerWidget</name>
|
||
- <message>
|
||
- <location filename="../src/widgets/kiran-date-picker-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-date-picker-widget.h" line="103"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-date-picker-widget.h" line="103"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranDisplayConfiguration</name>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="496"/>
|
||
- <source>KiranDisplayConfiguration</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="113"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="497"/>
|
||
- <source>Copy display</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="162"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="498"/>
|
||
- <source>Extended display</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="265"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="606"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="499"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="510"/>
|
||
- <source>Resolution ratio</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="298"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="639"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="500"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="511"/>
|
||
- <source>Refresh rate</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="328"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="669"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="501"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="512"/>
|
||
- <source>Zoom rate</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="348"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="689"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="502"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="513"/>
|
||
- <source>Automatic</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="353"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="694"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="503"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="514"/>
|
||
- <source>100% (recommended)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="358"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="699"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="504"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="515"/>
|
||
- <source>200%</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="420"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="758"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="506"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="517"/>
|
||
- <source>Apply</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="442"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="780"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="507"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="518"/>
|
||
- <source>Close</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="509"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="508"/>
|
||
- <source>Open</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.ui" line="561"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration.h" line="509"/>
|
||
- <source>Set as main display</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="329"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="351"/>
|
||
- <source> (recommended)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="371"/>
|
||
- <source>Is the display normal?</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="374"/>
|
||
- <source>Save current configuration(K)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="378"/>
|
||
- <source>Restore previous configuration(R)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="386"/>
|
||
- <source>The display will resume the previous configuration in %1 seconds</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranDisplayConfigurationPanel</name>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="145"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="122"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="147"/>
|
||
- <source>Rotate left 90 degrees</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="153"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="151"/>
|
||
- <source>Rotate right 90 degrees</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="184"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="155"/>
|
||
- <source>Turn left and right</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="218"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="159"/>
|
||
- <source>upside down</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration-panel.ui" line="252"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/display/kiran-cpanel-display_autogen/include/ui_kiran-display-configuration-panel.h" line="163"/>
|
||
- <source>Identification display</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranModuleWidget</name>
|
||
- <message>
|
||
- <location filename="../../../lib/common-widgets/kiran-module-widget/kiran-module-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/lib/common-widgets/common-widgets_autogen/include/ui_kiran-module-widget.h" line="108"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp" line="140"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTimeDateWidget</name>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.ui" line="6"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="174"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="174"/>
|
||
- <source>KiranTimeDateWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.ui" line="163"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="177"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-timedate-widget.h" line="177"/>
|
||
- <source>Automatic synchronizetion</source>
|
||
- <translation>自动同步</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.cpp" line="125"/>
|
||
- <source>Change Time Zone</source>
|
||
- <translation>更改时区</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.cpp" line="136"/>
|
||
- <source>Set Time Manually</source>
|
||
- <translation>手动设置时间</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.cpp" line="152"/>
|
||
- <source>Time date format setting</source>
|
||
- <translation>日期时间格式设置</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/kiran-timedate-widget.cpp" line="202"/>
|
||
- <source>%1(%2)</source>
|
||
- <translation>%1时间(%2)</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTimePickerWidget</name>
|
||
- <message>
|
||
- <location filename="../src/widgets/kiran-time-picker-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-picker-widget.h" line="135"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-picker-widget.h" line="135"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTimeZone</name>
|
||
- <message>
|
||
- <location filename="../src/timezone/kiran-time-zone.ui" line="23"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone.h" line="121"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone.h" line="121"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/timezone/kiran-time-zone.cpp" line="94"/>
|
||
- <source>Search in all time zones...</source>
|
||
- <translation>在所有时区中搜索...</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTimeZoneItem</name>
|
||
- <message>
|
||
- <location filename="../src/widgets/kiran-time-zone-item.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-item.h" line="63"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-item.h" line="63"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/widgets/kiran-time-zone-item.cpp" line="58"/>
|
||
- <source>No search results, please search again...</source>
|
||
- <translation>无搜索结果,请重新搜索...</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTimeZoneList</name>
|
||
- <message>
|
||
- <location filename="../src/timezone/kiran-time-zone-list.ui" line="20"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-list.h" line="71"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_kiran-time-zone-list.h" line="71"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranTips</name>
|
||
- <message>
|
||
- <location filename="../../account/src/widgets/kiran-tips.ui" line="29"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_kiran-tips.h" line="71"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_kiran-tips.h" line="71"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KylinsecLogo</name>
|
||
- <message>
|
||
- <location filename="../../system/src/kylinsec-logo.cpp" line="25"/>
|
||
- <source>Copyright ©</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/kylinsec-logo.cpp" line="25"/>
|
||
- <source>KylinSec. All rights reserved.</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>LayoutItem</name>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-item.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-item.h" line="61"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>LayoutList</name>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-list.ui" line="20"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-list.h" line="152"/>
|
||
- <source>LayoutList</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>LayoutPage</name>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="226"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="67"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="227"/>
|
||
- <source>Select Kayboard Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="105"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="228"/>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="383"/>
|
||
- <source>Edit</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="206"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="230"/>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="265"/>
|
||
- <source>Add Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="297"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="231"/>
|
||
- <source>Addition</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.ui" line="338"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keyboard/kiran-cpanel-keyboard_autogen/include/ui_layout-page.h" line="232"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="112"/>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="287"/>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="326"/>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="359"/>
|
||
- <source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="112"/>
|
||
- <source>You have added this keyboard layout!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="288"/>
|
||
- <source>The %1 keyboard layout does not exist!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="327"/>
|
||
- <source>The keyboard layout is currently in use and cannot be deleted!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="339"/>
|
||
- <source>Delete Layout</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="360"/>
|
||
- <source>You do not appear to have added %1 keyboard layout!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-page.cpp" line="374"/>
|
||
- <source>Finish</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>LicenseAgreement</name>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_license-agreement.h" line="100"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.ui" line="76"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_license-agreement.h" line="101"/>
|
||
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||
-<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||
-p, li { white-space: pre-wrap; }
|
||
-</style></head><body style=" font-family:'Noto Sans CJK SC'; font-size:9pt; font-weight:400; font-style:normal;">
|
||
-<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.ui" line="110"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_license-agreement.h" line="106"/>
|
||
- <source>Export</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.ui" line="148"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_license-agreement.h" line="107"/>
|
||
- <source>Close</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="79"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="81"/>
|
||
- <source>PDF(*.pdf)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="90"/>
|
||
- <source>Export License</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="91"/>
|
||
- <source>Export License failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="133"/>
|
||
- <source>User End License Agreement</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="152"/>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="165"/>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="224"/>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="232"/>
|
||
- <source>None</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/license-agreement.cpp" line="180"/>
|
||
- <source>Version License</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ManagerTray</name>
|
||
- <message>
|
||
- <location filename="../../network/src/tray/manager-tray.cpp" line="123"/>
|
||
- <source>Network settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Media Key</name>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="57"/>
|
||
- <source>Audio Play</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="58"/>
|
||
- <source>Search</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="59"/>
|
||
- <source>WWW</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="60"/>
|
||
- <source>Audio Lower Volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="61"/>
|
||
- <source>Audio Raise Volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="62"/>
|
||
- <source>Mic Mute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="63"/>
|
||
- <source>Audio Stop</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="64"/>
|
||
- <source>Explorer</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="65"/>
|
||
- <source>Calculator</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="66"/>
|
||
- <source>Audio Mute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="67"/>
|
||
- <source>Audio Pause</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="68"/>
|
||
- <source>Audio Prev</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="69"/>
|
||
- <source>Audio Media</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="70"/>
|
||
- <source>Audio Next</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="71"/>
|
||
- <source>Mail</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="72"/>
|
||
- <source>Tools</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/keycode-translator.cpp" line="73"/>
|
||
- <source>Eject</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>MonthSpinBox</name>
|
||
- <message>
|
||
- <location filename="../src/widgets/date-spinbox.h" line="33"/>
|
||
- <source>MMMM</source>
|
||
- <translation type="unfinished">MMMM</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>MousePage</name>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="226"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="226"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="83"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="227"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="227"/>
|
||
- <source>Select Mouse Hand</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="132"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="228"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="228"/>
|
||
- <source>Mouse Motion Acceleration</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="186"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="229"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="229"/>
|
||
- <source>Slow</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="206"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="230"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="230"/>
|
||
- <source>Fast</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="243"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="231"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="231"/>
|
||
- <source>Natural Scroll</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.ui" line="277"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="233"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_mouse-page.h" line="233"/>
|
||
- <source>Middle Emulation Enabled</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.cpp" line="79"/>
|
||
- <source>Right Hand Mode</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/mouse-page.cpp" line="79"/>
|
||
- <source>Left Hand Mode</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>NetworkDetails</name>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_network-details.h" line="113"/>
|
||
- <source>NetworkDetails</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_network-details.h" line="114"/>
|
||
- <source>Network Details</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_network-details.h" line="115"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>NetworkPlugin</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/network-plugin.cpp" line="115"/>
|
||
- <source>Wired Connection %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/network-plugin.cpp" line="131"/>
|
||
- <source>Wireless Connection %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>OutputPage</name>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="208"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="208"/>
|
||
- <source>OutputPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="55"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="209"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="209"/>
|
||
- <source>Output devices</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="110"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="210"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="210"/>
|
||
- <source>Output volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="202"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="212"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="212"/>
|
||
- <source>Left/right balance</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="257"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="213"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="213"/>
|
||
- <source>Left</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.ui" line="289"/>
|
||
- <location filename="../../../build/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="214"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-cpanel-audio_autogen/include/ui_output-page.h" line="214"/>
|
||
- <source>Right</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/plugin/output-page.cpp" line="96"/>
|
||
- <source>No output device detected</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>PanelWidget</name>
|
||
- <message>
|
||
- <location filename="../../../src/panel-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/kiran-control-panel_autogen/include/ui_panel-widget.h" line="49"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>PanelWindow</name>
|
||
- <message>
|
||
- <location filename="../../../src/panel-window.cpp" line="46"/>
|
||
- <source>Control Panel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>PasswordExpirationPolicyPage</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="248"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="248"/>
|
||
- <source>PasswordExpirationPolicyPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="43"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="249"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="249"/>
|
||
- <source>User expires</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="67"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="250"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="250"/>
|
||
- <source>yyyy-MM-dd</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="84"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="251"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="251"/>
|
||
- <source>Last password change</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="108"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="252"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="252"/>
|
||
- <source>1990-01-01</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="125"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="253"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="253"/>
|
||
- <source>Maximum vaild days of password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="162"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="254"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="254"/>
|
||
- <source>Prompt time before password expiration</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="199"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="255"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="255"/>
|
||
- <source>how many days after password expires will become inactive</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="280"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="256"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="256"/>
|
||
- <source>save</source>
|
||
- <translation type="unfinished">保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.ui" line="321"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="257"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_password-expiration-policy-page.h" line="257"/>
|
||
- <source>return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.cpp" line="66"/>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.cpp" line="73"/>
|
||
- <location filename="../../account/src/pages/passwd-expiration-policy/password-expiration-policy-page.cpp" line="81"/>
|
||
- <source>day</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Popup</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/popup.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/popup.ui" line="26"/>
|
||
- <source>Ok</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/popup.ui" line="39"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/popup.cpp" line="23"/>
|
||
- <source>cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>PowerSettingsPage</name>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="112"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="112"/>
|
||
- <source>PowerSettingsPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.ui" line="43"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="113"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="113"/>
|
||
- <source>After idle for more than the following time, the computer will execute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.ui" line="76"/>
|
||
- <location filename="../../../build/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="114"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/power/kiran-cpanel-power_autogen/include/ui_power-settings-page.h" line="114"/>
|
||
- <source>The monitor will turn off when it is idle</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.cpp" line="63"/>
|
||
- <source>Suspend</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.cpp" line="64"/>
|
||
- <source>Shutdown</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.cpp" line="65"/>
|
||
- <source>Hibernate</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/pages/power-settings/power-settings-page.cpp" line="66"/>
|
||
- <source>Do nothing</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>QObject</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.cpp" line="143"/>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="140"/>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="185"/>
|
||
- <source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/font/fonts.cpp" line="144"/>
|
||
- <source>Set font failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="141"/>
|
||
- <source>Get icon themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="186"/>
|
||
- <source>Get cursor themes failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="226"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="227"/>
|
||
- <source>There is no theme to set!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-config-global.cpp" line="49"/>
|
||
- <location filename="../../display/src/kiran-display-config-global.h" line="90"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="406"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="424"/>
|
||
- <source>Tips</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-config-global.cpp" line="52"/>
|
||
- <location filename="../../display/src/kiran-display-config-global.h" line="93"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="409"/>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="427"/>
|
||
- <source>OK(K)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="413"/>
|
||
- <source>Failed to apply display settings!%1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../display/src/kiran-display-configuration.cpp" line="431"/>
|
||
- <source>Fallback display setting failed! %1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keyboard/src/pages/layout/layout-list.cpp" line="140"/>
|
||
- <source>No search results, please search again...</source>
|
||
- <translation type="unfinished">无搜索结果,请重新搜索...</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/common/common.cpp" line="31"/>
|
||
- <source>%1Day</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/common/common.cpp" line="35"/>
|
||
- <source>%1Hour</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/common/common.cpp" line="39"/>
|
||
- <source>%1Minute</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../power/src/common/common.cpp" line="43"/>
|
||
- <source>never</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>SelectAvatarPage</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/select-avatar-page/select-avatar-page.cpp" line="148"/>
|
||
- <source>Confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/select-avatar-page/select-avatar-page.cpp" line="161"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/select-avatar-page/select-avatar-page.cpp" line="174"/>
|
||
- <source>select picture</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/select-avatar-page/select-avatar-page.cpp" line="176"/>
|
||
- <source>image files(*.bmp *.jpg *.png *.tif *.gif *.pcx *.tga *.exif *.fpx *.svg *.psd *.cdr *.pcd *.dxf *.ufo *.eps *.ai *.raw *.WMF *.webp)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>SettingBriefWidget</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/common/setting-brief-widget.ui" line="26"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_setting-brief-widget.h" line="68"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/common/setting-brief-widget.ui" line="47"/>
|
||
- <location filename="../../appearance/src/common/setting-brief-widget.ui" line="67"/>
|
||
- <location filename="../../appearance/src/common/setting-brief-widget.ui" line="74"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_setting-brief-widget.h" line="69"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_setting-brief-widget.h" line="70"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_setting-brief-widget.h" line="71"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Shortcut</name>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="460"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="175"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="462"/>
|
||
- <source>Custom</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="207"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="463"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="158"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="550"/>
|
||
- <source>Edit</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="340"/>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="533"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="464"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="469"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="104"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="115"/>
|
||
- <source>Add</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="375"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="465"/>
|
||
- <source>Reset</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="421"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="466"/>
|
||
- <source>Custom Shortcut Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="451"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="467"/>
|
||
- <source>Custom Shortcut application</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="481"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="468"/>
|
||
- <source>Custom Shortcut Key</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="568"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="470"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="614"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="471"/>
|
||
- <source>Shortcut Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="657"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="472"/>
|
||
- <source>Shortcut application</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="688"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="473"/>
|
||
- <source>Shortcut key</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="740"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="474"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.ui" line="775"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut.h" line="475"/>
|
||
- <source>return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="86"/>
|
||
- <source>Please enter a search keyword...</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="98"/>
|
||
- <source>Required</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="124"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="130"/>
|
||
- <source>Please press the new shortcut key</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="156"/>
|
||
- <source>Finished</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="654"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="704"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="725"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="760"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="780"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="804"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="824"/>
|
||
- <source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="299"/>
|
||
- <source>Get shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="211"/>
|
||
- <source>failed to load shortcut key data!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="253"/>
|
||
- <source>List shortcut failed,error:%1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="298"/>
|
||
- <source>Error</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="372"/>
|
||
- <source>Open File</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="602"/>
|
||
- <source>System</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="604"/>
|
||
- <source>Sound</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="655"/>
|
||
- <source>Delete shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="668"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="743"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="669"/>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="744"/>
|
||
- <source>Please complete the shortcut information!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="678"/>
|
||
- <source>Set shortcut</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="679"/>
|
||
- <source>Are you sure you want to disable this shortcut?</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="705"/>
|
||
- <source>Modify system shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="726"/>
|
||
- <source>Modify custom shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="761"/>
|
||
- <source>Add custom shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="781"/>
|
||
- <source>Reset shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="805"/>
|
||
- <source>Cannot use shortcut "%1", Because you cannot enter with this key.Please try again using Ctrl, Alt, or Shift at the same time.</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut.cpp" line="825"/>
|
||
- <source>Shortcut keys %1 are already used in %2,Please try again!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ShortcutItem</name>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut-item.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut-item.h" line="76"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/shortcut-item.ui" line="53"/>
|
||
- <location filename="../../keybinding/src/shortcut-item.ui" line="73"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut-item.h" line="77"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/keybinding/kiran-cpanel-keybinding_autogen/include/ui_shortcut-item.h" line="78"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>StatusNotification</name>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="40"/>
|
||
- <source>Connection activated</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="41"/>
|
||
- <source>You are now connected to the network "%1"</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="86"/>
|
||
- <source>Connection deactivated</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="87"/>
|
||
- <source>You have now disconnected the network "%1"</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="108"/>
|
||
- <source>Connection Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/status-notification.cpp" line="109"/>
|
||
- <source>Failed to connect to the network "%1"</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>SubItem1</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/subitem-1.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/subitem-1.ui" line="20"/>
|
||
- <source>弹窗</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/subitem-1.ui" line="27"/>
|
||
- <source>SubItem1</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>SubItem2</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/subitem-2.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem/subitem-2.ui" line="20"/>
|
||
- <source>SubItem2</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>SystemInformation</name>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="299"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="149"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="300"/>
|
||
- <source>Host Name:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="169"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="260"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="335"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="398"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="301"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="304"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="306"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="308"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="200"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="302"/>
|
||
- <source>Change</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="240"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="303"/>
|
||
- <source>System Version:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="315"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="305"/>
|
||
- <source>Kernel Version:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="378"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="307"/>
|
||
- <source>System Architecture:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="441"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="309"/>
|
||
- <source>EULA:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="473"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="545"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="310"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="312"/>
|
||
- <source>Show</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.ui" line="513"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/system/kiran-cpanel-system_autogen/include/ui_system-information.h" line="311"/>
|
||
- <source>Version License:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../system/src/pages/system-information/system-information.cpp" line="92"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.cpp" line="93"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.cpp" line="94"/>
|
||
- <location filename="../../system/src/pages/system-information/system-information.cpp" line="95"/>
|
||
- <source>Unknow</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>TextInputDialog</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/text-input-dialog.cpp" line="40"/>
|
||
- <source>Tips</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ThemeWidget</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/theme-widget.cpp" line="145"/>
|
||
- <source>Dark Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/theme-widget.cpp" line="150"/>
|
||
- <source>Light Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Themes</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_themes.h" line="167"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.ui" line="81"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_themes.h" line="168"/>
|
||
- <source>Dark and Light Theme</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.ui" line="109"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_themes.h" line="169"/>
|
||
- <source>Themes Settings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.ui" line="149"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_themes.h" line="170"/>
|
||
- <source>Open Window Effects</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="124"/>
|
||
- <source>Choose icon themes</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="130"/>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="176"/>
|
||
- <source>Unknown</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/theme/themes.cpp" line="170"/>
|
||
- <source>Choose cursor themes</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>ThreadObject</name>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/thread-object.cpp" line="134"/>
|
||
- <source>Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../keybinding/src/thread-object.cpp" line="135"/>
|
||
- <source>List shortcut failed,error:</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>TimezoneSettings</name>
|
||
- <message>
|
||
- <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="125"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="125"/>
|
||
- <source>TimezoneSettings</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="52"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="126"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="126"/>
|
||
- <source>Select Time Zone</source>
|
||
- <translation>选择时区</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="116"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="127"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="127"/>
|
||
- <source>save</source>
|
||
- <translation>保存</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../src/pages/timezone-settings/time-zone-settings.ui" line="157"/>
|
||
- <location filename="../../../build/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="128"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/timedate/kiran-cpanel-timedate_autogen/include/ui_time-zone-settings.h" line="128"/>
|
||
- <source>reset</source>
|
||
- <translation>重置</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>TouchPadPage</name>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="320"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="320"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="83"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="321"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="321"/>
|
||
- <source>TouchPad Enabled</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="131"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="323"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="323"/>
|
||
- <source>Select TouchPad Hand</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="180"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="324"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="324"/>
|
||
- <source>TouchPad Motion Acceleration</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="223"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="325"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="325"/>
|
||
- <source>Slow</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="243"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="326"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="326"/>
|
||
- <source>Fast</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="273"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="327"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="327"/>
|
||
- <source>Select Click Method</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="317"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="328"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="328"/>
|
||
- <source>Select Scroll Method</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="361"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="329"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="329"/>
|
||
- <source>Natural Scroll</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="409"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="331"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="331"/>
|
||
- <source>Enabled while Typing</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.ui" line="457"/>
|
||
- <location filename="../../../build/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="333"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/mouse/kiran-cpanel-mouse_autogen/include/ui_touchpad-page.h" line="333"/>
|
||
- <source>Tap to Click</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="268"/>
|
||
- <source>Right Hand Mode</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="268"/>
|
||
- <source>Left Hand Mode</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="272"/>
|
||
- <source>Press and Tap</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="272"/>
|
||
- <source>Tap</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="276"/>
|
||
- <source>Two Finger Scroll</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../mouse/src/touchpad-page.cpp" line="276"/>
|
||
- <source>Edge Scroll</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>TrayItemWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="251"/>
|
||
- <source>TrayItemWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="74"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="252"/>
|
||
- <source>Icon</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="81"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="253"/>
|
||
- <source>Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="179"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="255"/>
|
||
- <source>Status</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="255"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="256"/>
|
||
- <source>Ignore</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="280"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="257"/>
|
||
- <source>Disconnect</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="347"/>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="448"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="258"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="260"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="372"/>
|
||
- <location filename="../../network/src/tray-itemwidget.ui" line="473"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="259"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-itemwidget.h" line="261"/>
|
||
- <source>Connect</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.cpp" line="127"/>
|
||
- <source>Connected</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.cpp" line="138"/>
|
||
- <source>Unconnected</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.cpp" line="189"/>
|
||
- <source>Please input password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray-itemwidget.cpp" line="198"/>
|
||
- <source>Please input a network name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>TrayPage</name>
|
||
- <message>
|
||
- <location filename="../../network/src/tray/tray-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-page.h" line="80"/>
|
||
- <source>TrayPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray/tray-page.ui" line="71"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_tray-page.h" line="81"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray/tray-page.cpp" line="82"/>
|
||
- <source>Select wired network card</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/tray/tray-page.cpp" line="88"/>
|
||
- <source>Select wireless network card</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>UserInfoPage</name>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="14"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="450"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="450"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="138"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="451"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="451"/>
|
||
- <source>Account</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="167"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="452"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="452"/>
|
||
- <source>Change password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="193"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="453"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="453"/>
|
||
- <source>User id</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="251"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="454"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="454"/>
|
||
- <source>User type</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="312"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="455"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="455"/>
|
||
- <source>User status</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="367"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="456"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="456"/>
|
||
- <source>auth manager</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="396"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="457"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="457"/>
|
||
- <source>Password expiration policy</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="461"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="458"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="458"/>
|
||
- <source>Confirm</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="502"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="459"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="459"/>
|
||
- <source>Delete</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="577"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="460"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="460"/>
|
||
- <source>Current password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="638"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="461"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="461"/>
|
||
- <source>New password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="687"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="462"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="462"/>
|
||
- <source>Enter the new password again</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="780"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="463"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="463"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.ui" line="821"/>
|
||
- <location filename="../../../build/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="464"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/account/kiran-cpanel-account_autogen/include/ui_user-info-page.h" line="464"/>
|
||
- <source>Cancel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="146"/>
|
||
- <source>standard</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="147"/>
|
||
- <source>administrator</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="222"/>
|
||
- <source>Please enter the new user password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="230"/>
|
||
- <source>Please enter the password again</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="236"/>
|
||
- <source>The password you enter must be the same as the former one</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="247"/>
|
||
- <source>Please enter the current user password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="253"/>
|
||
- <source>The current password is incorrect</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="260"/>
|
||
- <source>The new password cannot be the same as the current password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="269"/>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="306"/>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="325"/>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="359"/>
|
||
- <source>Error</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="269"/>
|
||
- <source>Password encryption failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="311"/>
|
||
- <source>user information updated successfully</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="331"/>
|
||
- <source>Password updated successfully</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="337"/>
|
||
- <source>The directory and files under the user's home directory are deleted with the user.Are you sure you want to delete the user(%1)?</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../account/src/pages/user-info-page/user-info-page.cpp" line="340"/>
|
||
- <source>Warning</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VolumeSettingPage</name>
|
||
- <message>
|
||
- <location filename="../../audio/src/system-tray/volume-setting-page.ui" line="35"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-audio-status-icon_autogen/include/ui_volume-setting-page.h" line="123"/>
|
||
- <source>VolumeSettingPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../audio/src/system-tray/volume-setting-page.ui" line="104"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/audio/kiran-audio-status-icon_autogen/include/ui_volume-setting-page.h" line="124"/>
|
||
- <location filename="../../audio/src/system-tray/volume-setting-page.cpp" line="58"/>
|
||
- <source>Volume</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnIPsec</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="131"/>
|
||
- <source>VpnIPsec</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="34"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="132"/>
|
||
- <source>Enable IPsec</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="71"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="133"/>
|
||
- <source>Group Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="81"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="134"/>
|
||
- <source>Group ID</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="91"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="135"/>
|
||
- <source>Pre-Shared Key</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="101"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="136"/>
|
||
- <source>Internet Key Exchange Protocol</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipsec.ui" line="111"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipsec.h" line="137"/>
|
||
- <source>Encapsulating Security Payload</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnIpvx</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipvx.h" line="98"/>
|
||
- <source>VpnIpvx</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipvx.h" line="99"/>
|
||
- <source>IPV4 Method</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.ui" line="44"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipvx.h" line="100"/>
|
||
- <source>Only applied in corresponding resources</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.ui" line="66"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipvx.h" line="101"/>
|
||
- <source>Preferred DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.ui" line="76"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ipvx.h" line="102"/>
|
||
- <source>Alternate DNS</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ipvx.cpp" line="34"/>
|
||
- <source>Auto</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnL2tpSetting</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/vpn/vpn-l2tp-setting.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-l2tp-setting.h" line="93"/>
|
||
- <source>VpnL2tpSetting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/vpn/vpn-l2tp-setting.cpp" line="24"/>
|
||
- <source>VPN name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnManager</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-manager.h" line="192"/>
|
||
- <source>VpnManager</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.ui" line="124"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-manager.h" line="193"/>
|
||
- <source>VPN type</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.ui" line="204"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-manager.h" line="194"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.ui" line="224"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-manager.h" line="195"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.cpp" line="44"/>
|
||
- <source>VPN</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.cpp" line="48"/>
|
||
- <source>L2TP</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.cpp" line="49"/>
|
||
- <source>PPTP</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.cpp" line="177"/>
|
||
- <source>Tips</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/vpn-manager.cpp" line="178"/>
|
||
- <source>Password required to connect to %1.</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnPpp</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ppp.h" line="117"/>
|
||
- <source>VpnPpp</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ppp.h" line="118"/>
|
||
- <source>VPN PPP</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.ui" line="41"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ppp.h" line="119"/>
|
||
- <source>Use MPPE</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.ui" line="78"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ppp.h" line="120"/>
|
||
- <source>Security</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.ui" line="97"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-ppp.h" line="121"/>
|
||
- <source>Stateful MPPE</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="42"/>
|
||
- <source>All available (default)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="43"/>
|
||
- <source>40-bit (less secure)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="44"/>
|
||
- <source>128-bit (most secure)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="86"/>
|
||
- <source>Refuse EAP Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="87"/>
|
||
- <source>Refuse PAP Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="88"/>
|
||
- <source>Refuse CHAP Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="89"/>
|
||
- <source>Refuse MSCHAP Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="90"/>
|
||
- <source>Refuse MSCHAPv2 Authentication</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="91"/>
|
||
- <source>No BSD Data Compression</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="92"/>
|
||
- <source>No Deflate Data Compression</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="93"/>
|
||
- <source>No TCP Header Compression</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="94"/>
|
||
- <source>No Protocol Field Compression</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="95"/>
|
||
- <source>No Address/Control Compression</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-ppp.cpp" line="96"/>
|
||
- <source>Send PPP Echo Packets</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnPptpSetting</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/vpn/vpn-pptp-setting.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-pptp-setting.h" line="75"/>
|
||
- <source>VpnPptpSetting</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/vpn/vpn-pptp-setting.cpp" line="22"/>
|
||
- <source>VPN name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>VpnWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="128"/>
|
||
- <source>VpnWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="129"/>
|
||
- <source>Gateway</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="42"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="130"/>
|
||
- <source>User Name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="52"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="131"/>
|
||
- <source>Password Options</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="81"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="132"/>
|
||
- <source>Password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="93"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="133"/>
|
||
- <source>PushButton</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.ui" line="105"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_vpn-widget.h" line="134"/>
|
||
- <source>NT Domain</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.cpp" line="36"/>
|
||
- <source>Saved</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.cpp" line="37"/>
|
||
- <source>Ask</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/vpn/vpn-widget.cpp" line="38"/>
|
||
- <source>Not required</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Wallpaper</name>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="179"/>
|
||
- <source>Form</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="68"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="180"/>
|
||
- <source>Set wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="137"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="181"/>
|
||
- <source>Desktop Wallpaper Preview</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="147"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="182"/>
|
||
- <source>Lock Screen WallPaper Preview</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="166"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="183"/>
|
||
- <source>Select wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.ui" line="220"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/appearance/kiran-cpanel-appearance_autogen/include/ui_wallpaper.h" line="184"/>
|
||
- <source>Select Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="107"/>
|
||
- <source>Set Desktop Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="123"/>
|
||
- <source>Set Lock Screen Wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="163"/>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="175"/>
|
||
- <source>set wallpaper</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="163"/>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="175"/>
|
||
- <source>Set wallpaper failed!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="186"/>
|
||
- <source>select picture</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="188"/>
|
||
- <source>image files(*.bmp *.jpg *.png *.tif *.gif *.pcx *.tga *.exif *.fpx *.svg *.psd *.cdr *.pcd *.dxf *.ufo *.eps *.ai *.raw *.WMF *.webp)</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="208"/>
|
||
- <source>Add Image Failed</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../appearance/src/pages/wallpaper/wallpaper.cpp" line="209"/>
|
||
- <source>The image already exists!</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WiredManager</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wired-manager.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wired-manager.h" line="136"/>
|
||
- <source>WiredManager</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wired-manager.ui" line="128"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wired-manager.h" line="137"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wired-manager.ui" line="148"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wired-manager.h" line="138"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wired-manager.cpp" line="42"/>
|
||
- <source>Wired Network Adapter</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WiredSettingPage</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/wired-setting-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wired-setting-page.h" line="75"/>
|
||
- <source>WiredSettingPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/wired-setting-page.cpp" line="66"/>
|
||
- <source>Network name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WirelessManager</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-manager.h" line="133"/>
|
||
- <source>WirelessManager</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.ui" line="125"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-manager.h" line="134"/>
|
||
- <source>Save</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.ui" line="145"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-manager.h" line="135"/>
|
||
- <source>Return</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.cpp" line="44"/>
|
||
- <source>Wireless Network Adapter</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.cpp" line="345"/>
|
||
- <source>Tips</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/manager/wireless-manager.cpp" line="346"/>
|
||
- <source>Password required to connect to %1.</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WirelessSecurityWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-security-widget.h" line="125"/>
|
||
- <source>WirelessSecurityWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.ui" line="34"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-security-widget.h" line="126"/>
|
||
- <source>Security</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.ui" line="65"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-security-widget.h" line="127"/>
|
||
- <source>Password Options</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.ui" line="90"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-security-widget.h" line="128"/>
|
||
- <source>Password</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.ui" line="102"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-security-widget.h" line="129"/>
|
||
- <source>PushButton</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.cpp" line="33"/>
|
||
- <source>None</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.cpp" line="34"/>
|
||
- <source>WPA/WPA2 Personal</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.cpp" line="38"/>
|
||
- <source>Save password for all users</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.cpp" line="39"/>
|
||
- <source>Save password for this user</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-security-widget.cpp" line="40"/>
|
||
- <source>Ask me always</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WirelessSettingPage</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/wireless-setting-page.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-setting-page.h" line="83"/>
|
||
- <source>WirelessSettingPage</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/settings/wireless-setting-page.cpp" line="64"/>
|
||
- <source>Wireless name</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>WirelessWidget</name>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-widget.ui" line="14"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-widget.h" line="93"/>
|
||
- <source>WirelessWidget</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-widget.ui" line="32"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-widget.h" line="94"/>
|
||
- <source>SSID</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-widget.ui" line="42"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-widget.h" line="95"/>
|
||
- <source>MAC Address Of Device</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-widget.ui" line="54"/>
|
||
- <location filename="../../../cmake-build-debug/plugins/network/kiran-cpanel-network_autogen/include/ui_wireless-widget.h" line="96"/>
|
||
- <source>Custom MTU</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../network/src/plugin/setting-widget/wireless-widget.cpp" line="43"/>
|
||
- <source>No device specified</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
<context>
|
||
<name>YearSpinBox</name>
|
||
<message>
|
||
diff --git a/src/main.cpp b/src/main.cpp
|
||
index 6247adc..55cafc5 100644
|
||
--- a/src/main.cpp
|
||
+++ b/src/main.cpp
|
||
@@ -31,8 +31,8 @@ using namespace std;
|
||
|
||
bool installTranslator()
|
||
{
|
||
- QTranslator tsor;
|
||
- if (!tsor.load(QLocale(),
|
||
+ QTranslator* tsor = new QTranslator(qApp);
|
||
+ if (!tsor->load(QLocale(),
|
||
qAppName(),
|
||
".",
|
||
TRANSLATE_PREFIX,
|
||
@@ -42,7 +42,7 @@ bool installTranslator()
|
||
return false;
|
||
}
|
||
|
||
- QCoreApplication::installTranslator(&tsor);
|
||
+ QCoreApplication::installTranslator(tsor);
|
||
return true;
|
||
}
|
||
|
||
diff --git a/translations/kiran-control-panel.zh_CN.ts b/translations/kiran-control-panel.zh_CN.ts
|
||
index 6694f07..4da29a1 100644
|
||
--- a/translations/kiran-control-panel.zh_CN.ts
|
||
+++ b/translations/kiran-control-panel.zh_CN.ts
|
||
@@ -1,176 +1,33 @@
|
||
<?xml version="1.0" encoding="utf-8"?>
|
||
<!DOCTYPE TS>
|
||
<TS version="2.1" language="zh_CN">
|
||
-<context>
|
||
- <name>Dialog001</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem-1.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem-1.ui" line="20"/>
|
||
- <source>弹窗</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem-1.ui" line="27"/>
|
||
- <source>Dialog001</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>Dialog002</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem-2.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/subitem-2.ui" line="20"/>
|
||
- <source>Dialog002</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranControlCenter</name>
|
||
- <message>
|
||
- <location filename="../panel-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-control-center.h" line="65"/>
|
||
- <location filename="../../../cmake-build-debug/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-control-center.h" line="65"/>
|
||
- <source>Form</source>
|
||
- <translation></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranControlCenterWindow</name>
|
||
- <message>
|
||
- <location filename="../kiran-control-center-window.cpp" line="16"/>
|
||
- <source>Control Center</source>
|
||
- <translation>控制中心</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranControlPanelWindow</name>
|
||
- <message>
|
||
- <source>Control Center</source>
|
||
- <translation>控制中心</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranModuleClassWidget</name>
|
||
- <message>
|
||
- <location filename="../category-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-module-class-widget.h" line="98"/>
|
||
- <location filename="../../../cmake-build-debug/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-module-class-widget.h" line="98"/>
|
||
- <source>Form</source>
|
||
- <translation></translation>
|
||
- </message>
|
||
-</context>
|
||
<context>
|
||
<name>KiranModuleWidget</name>
|
||
<message>
|
||
- <location filename="../../../widgets/kiran-module-widget/kiran-module-widget.cpp" line="126"/>
|
||
+ <location filename="../lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp" line="140"/>
|
||
<source>Warning</source>
|
||
<translation>警告</translation>
|
||
</message>
|
||
<message>
|
||
- <location filename="../../../widgets/kiran-module-widget/kiran-module-widget.cpp" line="129"/>
|
||
- <source>OK(K)</source>
|
||
- <translation>确定(K)</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../widgets/kiran-module-widget/kiran-module-widget.cpp" line="133"/>
|
||
- <source>Cancel(R)</source>
|
||
- <translation>取消(R)</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../widgets/kiran-module-widget/kiran-module-widget.cpp" line="140"/>
|
||
- <source>The edited content in %1 is not saved. After switching, the edited content will be lost. Are you sure you want to switch?</source>
|
||
- <translation>%1 中编辑内容未保存,切换后编辑内容将丢失, 确定要切换吗?</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../widgets/kiran-module-widget/kiran-module-widget.ui" line="14"/>
|
||
- <location filename="../../../build/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-module-widget.h" line="119"/>
|
||
- <location filename="../../../cmake-build-debug/plugin-group/src/kiran-control-center_autogen/include/ui_kiran-module-widget.h" line="119"/>
|
||
- <source>Form</source>
|
||
- <translation></translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>KiranSearchLineEdit</name>
|
||
- <message>
|
||
- <location filename="../../../widgets/kiran-search-lineedit/kiran-search-lineedit.cpp" line="32"/>
|
||
- <source>search...</source>
|
||
- <translation>搜索...</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>PluginDemoWindow</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/app/kiran-cpanel-demo-window.cpp" line="15"/>
|
||
- <source>PluginDemo</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../lib/common-widgets/kiran-module-widget/kiran-module-widget.cpp" line="141"/>
|
||
+ <source>The edited content in %1 is not saved. After switching, the edited content will be lost. Are you sure you want to save?</source>
|
||
+ <translation>%1中编辑的内容未保存,切换后编辑的内容将会丢失。您确定要保存吗?</translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>Popup</name>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/popup.ui" line="14"/>
|
||
- <source>Dialog</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/popup.ui" line="26"/>
|
||
- <source>Ok</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
+ <name>PanelWidget</name>
|
||
<message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/popup.ui" line="39"/>
|
||
- <source>TextLabel</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../example/kiran-cpanel-demo/src/popup.cpp" line="14"/>
|
||
- <source>cancel</source>
|
||
+ <location filename="../src/panel-widget.ui" line="14"/>
|
||
+ <source>Form</source>
|
||
<translation type="unfinished"></translation>
|
||
</message>
|
||
</context>
|
||
<context>
|
||
- <name>QObject</name>
|
||
- <message>
|
||
- <location filename="../../../common/kiran-control-center-common.cpp" line="227"/>
|
||
- <source>Tips</source>
|
||
- <translation>提示</translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../common/kiran-control-center-common.cpp" line="230"/>
|
||
- <source>OK(K)</source>
|
||
- <translation>确定(K)</translation>
|
||
- </message>
|
||
+ <name>PanelWindow</name>
|
||
<message>
|
||
- <location filename="../../../common/kiran-control-center-common.cpp" line="234"/>
|
||
- <source>Failed to load plug-in %1。%2</source>
|
||
- <translation>加载插件%1失败。%2</translation>
|
||
- </message>
|
||
-</context>
|
||
-<context>
|
||
- <name>main</name>
|
||
- <message>
|
||
- <location filename="../../../launcher/src/main.cpp" line="16"/>
|
||
- <source>kiran control panel module runalone</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../../../launcher/src/main.cpp" line="28"/>
|
||
- <location filename="../../../launcher/src/main.cpp" line="29"/>
|
||
- <source>Module name.</source>
|
||
- <translation type="unfinished"></translation>
|
||
- </message>
|
||
- <message>
|
||
- <location filename="../main.cpp" line="35"/>
|
||
- <source>Print plugins dir</source>
|
||
- <translation type="unfinished"></translation>
|
||
+ <location filename="../src/panel-window.cpp" line="46"/>
|
||
+ <source>Control Panel</source>
|
||
+ <translation>控制面板</translation>
|
||
</message>
|
||
</context>
|
||
</TS>
|
||
--
|
||
2.33.0
|
||
|