1478 lines
81 KiB
Diff
1478 lines
81 KiB
Diff
From 60291bea24542d9238b11f112b1e84339ba46383 Mon Sep 17 00:00:00 2001
|
||
From: wangyucheng <wangyucheng@kylinsec.com.cn>
|
||
Date: Wed, 29 Mar 2023 17:16:03 +0800
|
||
Subject: [PATCH] fix(translate):add some translation
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
- 添加一些翻译
|
||
|
||
Relates #67661
|
||
---
|
||
CMakeLists.txt | 4 +-
|
||
.../kiran-screensaver-command/CMakeLists.txt | 4 +-
|
||
.../kiran-screensaver-command.bo_CN.ts | 105 ++++++++++++
|
||
.../kiran-screensaver-command.kk_KG.ts | 105 ++++++++++++
|
||
.../kiran-screensaver-command.kk_KZ.ts | 105 ++++++++++++
|
||
.../kiran-screensaver-command.mn_MN.ts | 105 ++++++++++++
|
||
.../kiran-screensaver-command.ug_CN.ts | 105 ++++++++++++
|
||
translations/kiran-screensaver.bo_CN.ts | 161 ++++++++++++++++++
|
||
translations/kiran-screensaver.kk_KG.ts | 161 ++++++++++++++++++
|
||
translations/kiran-screensaver.kk_KZ.ts | 161 ++++++++++++++++++
|
||
translations/kiran-screensaver.mn_MN.ts | 161 ++++++++++++++++++
|
||
translations/kiran-screensaver.ug_CN.ts | 161 ++++++++++++++++++
|
||
12 files changed, 1334 insertions(+), 4 deletions(-)
|
||
create mode 100644 tools/kiran-screensaver-command/translations/kiran-screensaver-command.bo_CN.ts
|
||
create mode 100644 tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KG.ts
|
||
create mode 100644 tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KZ.ts
|
||
create mode 100644 tools/kiran-screensaver-command/translations/kiran-screensaver-command.mn_MN.ts
|
||
create mode 100644 tools/kiran-screensaver-command/translations/kiran-screensaver-command.ug_CN.ts
|
||
create mode 100644 translations/kiran-screensaver.bo_CN.ts
|
||
create mode 100644 translations/kiran-screensaver.kk_KG.ts
|
||
create mode 100644 translations/kiran-screensaver.kk_KZ.ts
|
||
create mode 100644 translations/kiran-screensaver.mn_MN.ts
|
||
create mode 100644 translations/kiran-screensaver.ug_CN.ts
|
||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
index ee74108..bb60b39 100644
|
||
--- a/CMakeLists.txt
|
||
+++ b/CMakeLists.txt
|
||
@@ -53,7 +53,7 @@ endforeach()
|
||
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.h")
|
||
file(GLOB DEVEL_HEADER "include/*.h")
|
||
#翻译文件
|
||
-set(TS_FILES "translations/kiran-screensaver.zh_CN.ts")
|
||
+file(GLOB TS_FILES "translations/*.ts")
|
||
qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES})
|
||
|
||
add_executable(${PROJECT_NAME}
|
||
@@ -120,4 +120,4 @@ install(FILES ${DEVEL_HEADER} DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTAL
|
||
#install(FILES ${CMAKE_BINARY_DIR}/com.kylinsec.Kiran.ScreenSaver.service DESTINATION ${DBUS_SERVICE_INSTALL_DIR})
|
||
install(FILES data/kiran-screensaver.desktop DESTINATION ${XDG_AUTO_START_DIR})
|
||
install(FILES data/kiran-screensaver DESTINATION /${CMAKE_INSTALL_SYSCONFDIR}/pam.d/)
|
||
-install(FILES data/com.kylinsec.kiran.screensaver.gschema.xml DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/glib-2.0/schemas/)
|
||
\ No newline at end of file
|
||
+install(FILES data/com.kylinsec.kiran.screensaver.gschema.xml DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/glib-2.0/schemas/)
|
||
diff --git a/tools/kiran-screensaver-command/CMakeLists.txt b/tools/kiran-screensaver-command/CMakeLists.txt
|
||
index b5493e0..b441342 100644
|
||
--- a/tools/kiran-screensaver-command/CMakeLists.txt
|
||
+++ b/tools/kiran-screensaver-command/CMakeLists.txt
|
||
@@ -1,5 +1,5 @@
|
||
set(TARGET_NAME "kiran-screensaver-command")
|
||
-set( CMD_TS_FILES "translations/kiran-screensaver-command.zh_CN.ts" )
|
||
+file(GLOB CMD_TS_FILES "translations/*.ts" )
|
||
qt5_create_translation( CMD_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} ${CMD_TS_FILES} )
|
||
|
||
add_executable(${TARGET_NAME} main.cpp ${CMD_QM_FILES})
|
||
@@ -9,4 +9,4 @@ target_link_libraries(${TARGET_NAME} PRIVATE
|
||
Qt5::DBus)
|
||
|
||
install(TARGETS ${TARGET_NAME} DESTINATION ${SCREENSAVER_BIN_DIR})
|
||
-install(FILES ${CMD_QM_FILES} DESTINATION ${TRANSLATIONS_INSTALL_DIR})
|
||
\ No newline at end of file
|
||
+install(FILES ${CMD_QM_FILES} DESTINATION ${TRANSLATIONS_INSTALL_DIR})
|
||
diff --git a/tools/kiran-screensaver-command/translations/kiran-screensaver-command.bo_CN.ts b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.bo_CN.ts
|
||
new file mode 100644
|
||
index 0000000..3122c6d
|
||
--- /dev/null
|
||
+++ b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.bo_CN.ts
|
||
@@ -0,0 +1,105 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation>བརྙན་ཤེལ་གྱི་གནས་ཚུལ་ལ་འདྲི་རྩད་བྱེད་པ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation>བརྙན་ཤེལ་ལྟ་མཁན་གྱིས་འགུལ་སྐྱོད་བྱེད་པའི་དུས་ཚོད་རིང་ཐུང་ལ་འདྲི་རྩད་བྱས།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation>འཁོར་སྐྱོད་བྱེད་བཞིན་པའི་བརྙན་ཤེལ་གྱི་གོ་རིམ་ལ་འཕྲལ་དུ་བརྙན་ཤེལ་ལ་ཟྭ་རྒྱག་དགོས་པའི་རེ་བ་བཏོན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">འཁོར་སྐྱོད་བྱེད་བཞིན་པའི་བརྙན་ཤེལ་གྱི་གོ་རིམ་ལ་འཕྲལ་དུ་བརྙན་ཤེལ་གྱི་སྒོ་འབྱེད་དགོས་པའི་རེ་བ་བཏོན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation>བརྙན་ཤེལ་གྱི་ཁ་ཕྱེ་བ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation>གལ་ཏེ་བརྙན་ཤེལ་གྱི་ནུས་པ་འདོན་སྤེལ་བྱས་ན་འགུལ་སྐྱོད་བྱེད་མི་ཐུབ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation>བརྙན་ཤེལ་གྱི་ནུས་པ་འགུལ་སྐྱོད་བྱེད་པར་བཀག་འགོག་བྱེད་དགོས། བཀག་འགོག་བྱེད་པའི་དུས་མཚུངས་སུ་བཀོད་འདོམས་བྱེད་པར་བཀག་འགོག་བྱེད་དགོས།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation>བརྙན་ཤེལ་ལ་ཚོད་འཛིན་བྱེད་པའི་ཁ་པར་ཉེར་སྤྱོད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation>བརྙན་ཤེལ་ལ་ཚོད་འཛིན་བྱེད་པའི་རྒྱུ་རྐྱེན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation>ཁི་ལན་གྱི་བརྙན་ཤེལ་ལ་ལྟ་ཞིབ་བྱེད་མཁན་གྱིས་འཁོར་སྐྱོད་བྱེད་བཞིན་མེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation>"GetActive"ཞེས་འབོད་པ་དེ་ཕམ་ཉེས་བྱུང་ནས་%1ལ་ཁ་པར་བརྒྱབ་པ་རེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation>བརྙན་ཤེལ་གྱི་གྲོན་ཆུང་བྱེད་མཁན་ནི་%1ཡིན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation>འཁྲུག་ཆ་དོད་པོ་</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation>འགུལ་སྐྱོད་མི་བྱེད་པ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation>"GetInbitors"ལ་ཁ་པར་བརྒྱབ་ནས་ཕམ་ཉེས་བྱུང་བ་རེད།%1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation>བརྙན་ཤེལ་ལ་ཚོད་འཛིན་མི་ཐེབས་པ་རེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation>བརྙན་ཤེལ་གྱི་བརྙན་ལེན་འཕྲུལ་ཆས་ལ་ཚོད་འཛིན་ཐེབས་བཞིན་ཡོད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation>'GetActive'ལ་ཁ་པར་གཏོང་བར་ཕམ་ཉེས་བྱུང་ན་%1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation>བརྙན་ཤེལ་འདི་མིག་སྔར་འགུལ་སྐྱོད་བྱེད་ཀྱིན་མེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation>'GetActiveTime'ལ་ཁ་པར་བརྒྱབ་ནས་ཕམ་ཉེས་བྱུང་ན་%1</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KG.ts b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KG.ts
|
||
new file mode 100644
|
||
index 0000000..d05e029
|
||
--- /dev/null
|
||
+++ b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KG.ts
|
||
@@ -0,0 +1,105 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation>Fufuzani momwe polojekiti yotetezera pulogalamu ikugwirira ntchito</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation>Fufuzani pulogalamu yotetezera pulogalamu muzochitika za nthawi</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation>экран коргоо программасы иштеп жаткан дароо экранды бекитип айтып</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">экран коргоо программасы иштеп жаткан дароо экранды кулпусун айтып</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation>Tsegulani pulogalamu yotetezera pulogalamu</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation>экран коргоо иши абалында болсо, анда аны токтотуп калат</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation>Kuletsedwa kutsegula pulogalamu yotetezera chinsalu. Kuletsedwa kwa dongosolo loletsa kutsegula.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation>Mapulogalamu a kuyitana omwe amaletsa pulogalamu yotetezera pulogalamu</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation>Zifukwa za kuletsa pulogalamu yotetezera chinsalu</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation>Kiran экран коопсуздук чуркаган жок!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation>Kuitana "GetActive" kulephera,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation>Pulogalamu yotetezera pulogalamu ndi 1 peresenti.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation>Wogwira ntchito</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation>Эмес, иш</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation>Kuitana "GetInhibitors" kunalephera,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation>Pulogalamu yotetezera pulogalamu siiletsedwa.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation>Ndondomeko yotetezera pulogalamu ya pulogalamu inaletsedwa:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation>Kuitana "GetActive" kulephera,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation>Pulogalamu yotetezera pulogalamu yamakono siinayambe.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation>Kuitana "GetActiveTime" kunalephera,% 1</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KZ.ts b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KZ.ts
|
||
new file mode 100644
|
||
index 0000000..5dbeec7
|
||
--- /dev/null
|
||
+++ b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.kk_KZ.ts
|
||
@@ -0,0 +1,105 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation>Скриншоттың жай-күйін сұрау</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation>Скриншоттың белсенді болған уақытының ұзақтығын сұрау</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation>Экранды бірден құлыптау үшін экранды қорғау процесін іске қосу туралы хабарлайды</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">Экранның құлпын дереу ашу үшін экранды қорғау процесін іске қосу туралы хабарлайды</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation>Скриншотты қосу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation>Егер экрандаушы белсенді болса, оны өшіру</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation>Экрандаушыны белсендіруден тежеу. Тежеу кезінде пәрмен блоктары белсенді.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation>Экранды қорғаушыны тежейтін қоңырау шалу бағдарламасы</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation>Скриншотты тежеу себебі</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation>Kiran ScreenSaver іске қосулы емес!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation>"GetActive" деп қоңырау шалу сәтсіз аяқталды,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation>Скриншоты% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation>белсенді</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation>белсенді емес</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation>"GetInhibitors" деп атау сәтсіз аяқталды,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation>Скриншот тежелмейді.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation>Скриншотты тежейді:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation>"GetActive" деп қоңырау шалу сәтсіз аяқталды,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation>Скриншот қазіргі уақытта белсенді емес.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation>"GetActiveTime" деп қоңырау шалу сәтсіз аяқталды,% 1</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/tools/kiran-screensaver-command/translations/kiran-screensaver-command.mn_MN.ts b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.mn_MN.ts
|
||
new file mode 100644
|
||
index 0000000..98fcae4
|
||
--- /dev/null
|
||
+++ b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.mn_MN.ts
|
||
@@ -0,0 +1,105 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation>Дэлгэцийн үйлдвэрлэгчийн байдлыг хай</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation>Дэлгэцийн ажилтан идэвхтэй ажилласан хугацааны уртыг лавлана уу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation>Дэлгэцийг шууд түгжихийн тулд ажиллаж байгаа дэлгэцийн процессыг хэлдэг</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">Дэлгэцийг шууд тайлахын тулд ажиллаж байгаа дэлгэцийн процессыг хэлдэг</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation>Дэлгэцийн тавиурыг асаана уу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation>Хэрэв дэлгэцийн хамгаалагч идэвхтэй байвал түүнийг идэвхгүй болго</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation>Дэлгэцийг идэвхжүүлэхээс сэргийл. Дарангуйлах үед командын блокууд идэвхтэй байдаг.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation>Дэлгэцийн хамгаалагчийг дарангуйлж буй дуудлагын програм</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation>Дэлгэцийн зуухыг дарангуйлах шалтгаан</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation>Kiran ScreenSaver ажиллахгүй байна!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation>'GetActive' дуудлага амжилтгүй болсон,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation>Дэлгэцийн ажилтан% 1 байна.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation>идэвхтэй</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation>идэвхгүй</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation>'GetInhibitor' дуудлага амжилтгүй болсон,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation>Дэлгэцийн хамгаалагчийг дарангуйлахгүй.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation>Дэлгэцийн хэрэгслийг дараахь байдлаар дарангуйлж байна:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation>'GetActive' дуудлага амжилтгүй болсон,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation>Дэлгэцийн ажилтан одоогоор идэвхтэй биш байна.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation>'GetActiveTime' дуудлага амжилтгүй болсон,% 1</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/tools/kiran-screensaver-command/translations/kiran-screensaver-command.ug_CN.ts b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.ug_CN.ts
|
||
new file mode 100644
|
||
index 0000000..5723a70
|
||
--- /dev/null
|
||
+++ b/tools/kiran-screensaver-command/translations/kiran-screensaver-command.ug_CN.ts
|
||
@@ -0,0 +1,105 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation>سۈرۈشتۈرۈش ئېكران قوغداش پروگراممىسى ھالىتى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation>سۈرۈشتۈرۈش ئېكران قوغداش پروگراممىسى ھەرىكەت ھالىتىدە تۇرغان ۋاقىت ئۇزۇنلۇقى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation>ھازىر ئىجرا قىلىنىۋاتقان ئېكران قوغداش پروگراممىسى مۇساپىسىنى ئېيتىپ دەرھال قۇلۇپلاش ئېكران</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">ھازىر ئىجرا قىلىنىۋاتقان ئېكران قوغداش پروگراممىسى مۇساپىسىنى ئېيتىپ دەرھال قۇلۇپ ئېچىش ئېكران</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسىنى ئېچىش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation>ئەگەر ئېكران قوغداش پروگراممىسى ھەرىكەت ھالىتىدە بولسا، ئۇنى ئىشلىتىشتىن توختىتىش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسىنى قوزغىتىش مەنئى قىلىنىدۇ. تورمۇزلاش ئاكتىپلاشتۇرۇش قىلغاندا بۇيرۇق توسۇلۇش.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation>ھازىر ئېكران قوغداش پروگراممىسى يۆتكەپ ئىشلىتىش مەنئى قىلىنىدۇ قوللىنىشچان پروگرامما</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسى مەنئى قىلىنىدۇ سەۋەبى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation>Kiran ئېكرانى ئىجرا قىلىنمىدى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation>«GetActive» نى يۆتكەپ ئىشلىتىش مەغلۇپ بولدى، %1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسى %1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation>جانلىق</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation>ھەرىكەتسىز</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation>«GetInhibitors» نى يۆتكەپ ئىشلىتىش مەغلۇپ بولدى، %1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسى چەكلەنمەيدۇ.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسى چەكلەندى :</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation>«GetActive» نى يۆتكەپ ئىشلىتىش مەغلۇپ بولدى، %1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation>ئېكران قوغداش پروگراممىسى نۆۋەتتە قوزغىتىلمىدى.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation>«GetActiveTime» نى يۆتكەپ ئىشلىتىش مەغلۇپ بولدى، %1</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/translations/kiran-screensaver.bo_CN.ts b/translations/kiran-screensaver.bo_CN.ts
|
||
new file mode 100644
|
||
index 0000000..6ad9b86
|
||
--- /dev/null
|
||
+++ b/translations/kiran-screensaver.bo_CN.ts
|
||
@@ -0,0 +1,161 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>KSScreensaver</name>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="108"/>
|
||
+ <source>KSScreensaver</source>
|
||
+ <translation type="unfinished">KSScreensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="109"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">བཅུ་བཞི་བཅུ་ཞེ་ལྔ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="110"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">ཟླ་8ཚེས་27ཉིན་གྱི་གཟའ་པ་སངས་ཉིན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="vanished">ཁ་ཕྱེ་ནས་ཟྭ་རྒྱག་པ།</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSave::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="14"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="109"/>
|
||
+ <source>Screensaver</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་བརྙན་ཤེལ་འཕྲུལ་ཆས།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="56"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="110"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">བཅུ་བཞི་བཅུ་ཞེ་ལྔ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="72"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="111"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">ཟླ་8ཚེས་27ཉིན་གྱི་གཟའ་པ་སངས་ཉིན།</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSaver::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="94"/>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="unfinished">ཁ་ཕྱེ་ནས་ཟྭ་རྒྱག་པ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="176"/>
|
||
+ <source>MM-dd dddd</source>
|
||
+ <translation type="unfinished">MM-dd</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་གནས་ཚུལ་ལ་འདྲི་རྩད་བྱེད་པ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་ལྟ་མཁན་གྱིས་འགུལ་སྐྱོད་བྱེད་པའི་དུས་ཚོད་རིང་ཐུང་ལ་འདྲི་རྩད་བྱས།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation type="unfinished">འཁོར་སྐྱོད་བྱེད་བཞིན་པའི་བརྙན་ཤེལ་གྱི་གོ་རིམ་ལ་འཕྲལ་དུ་བརྙན་ཤེལ་ལ་ཟྭ་རྒྱག་དགོས་པའི་རེ་བ་བཏོན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">འཁོར་སྐྱོད་བྱེད་བཞིན་པའི་བརྙན་ཤེལ་གྱི་གོ་རིམ་ལ་འཕྲལ་དུ་བརྙན་ཤེལ་གྱི་སྒོ་འབྱེད་དགོས་པའི་རེ་བ་བཏོན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་ཁ་ཕྱེ་བ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation type="unfinished">གལ་ཏེ་བརྙན་ཤེལ་གྱི་ནུས་པ་འདོན་སྤེལ་བྱས་ན་འགུལ་སྐྱོད་བྱེད་མི་ཐུབ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation type="unfinished">ཁི་ལན་གྱི་བརྙན་ཤེལ་ལ་ལྟ་ཞིབ་བྱེད་མཁན་གྱིས་འཁོར་སྐྱོད་བྱེད་བཞིན་མེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetActive"ཞེས་འབོད་པ་དེ་ཕམ་ཉེས་བྱུང་ནས་%1ལ་ཁ་པར་བརྒྱབ་པ་རེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་གྲོན་ཆུང་བྱེད་མཁན་ནི་%1ཡིན།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation type="unfinished">འཁྲུག་ཆ་དོད་པོ་</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation type="unfinished">འགུལ་སྐྱོད་མི་བྱེད་པ།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetInbitors"ལ་ཁ་པར་བརྒྱབ་ནས་ཕམ་ཉེས་བྱུང་བ་རེད།%1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་ལ་ཚོད་འཛིན་མི་ཐེབས་པ་རེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་བརྙན་ལེན་འཕྲུལ་ཆས་ལ་ཚོད་འཛིན་ཐེབས་བཞིན་ཡོད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation type="unfinished">'GetActive'ལ་ཁ་པར་གཏོང་བར་ཕམ་ཉེས་བྱུང་ན་%1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་འདི་མིག་སྔར་འགུལ་སྐྱོད་བྱེད་ཀྱིན་མེད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation type="unfinished">'GetActiveTime'ལ་ཁ་པར་བརྒྱབ་ནས་ཕམ་ཉེས་བྱུང་ན་%1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་གྱི་ནུས་པ་འགུལ་སྐྱོད་བྱེད་པར་བཀག་འགོག་བྱེད་དགོས། བཀག་འགོག་བྱེད་པའི་དུས་མཚུངས་སུ་བཀོད་འདོམས་བྱེད་པར་བཀག་འགོག་བྱེད་དགོས།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་ལ་ཚོད་འཛིན་བྱེད་པའི་ཁ་པར་ཉེར་སྤྱོད།</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">བརྙན་ཤེལ་ལ་ཚོད་འཛིན་བྱེད་པའི་རྒྱུ་རྐྱེན།</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/translations/kiran-screensaver.kk_KG.ts b/translations/kiran-screensaver.kk_KG.ts
|
||
new file mode 100644
|
||
index 0000000..1f94ecc
|
||
--- /dev/null
|
||
+++ b/translations/kiran-screensaver.kk_KG.ts
|
||
@@ -0,0 +1,161 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>KSScreensaver</name>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="108"/>
|
||
+ <source>KSScreensaver</source>
|
||
+ <translation type="unfinished">KSScreensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="109"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14:45</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="110"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">Жума, 27-август</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="vanished">Кулпуну ачуу үчүн чыкылдатыңыз</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSave::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="14"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="109"/>
|
||
+ <source>Screensaver</source>
|
||
+ <translation type="unfinished">Screensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="56"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="110"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14:45</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="72"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="111"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">Жума, 27-август</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSaver::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="94"/>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="unfinished">Кулпуну ачуу үчүн чыкылдатыңыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="176"/>
|
||
+ <source>MM-dd dddd</source>
|
||
+ <translation type="unfinished">MM-ddd dddd</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation type="unfinished">Экрандын абалын сураңыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation type="unfinished">Экрандын жигердүү иштеген убактысын сураңыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation type="unfinished">Иштеп жаткан экранды дароо кулпулап салууну айтат</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">Иштеп жаткан экранды дароо ачып берүү процесси жөнүндө айтат</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation type="unfinished">Экран сактагычты күйгүзүңүз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation type="unfinished">Эгер экран сактагыч иштеп жатса, аны иштен чыгарыңыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation type="unfinished">Kiran ScreenSaver иштебей жатат!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation type="unfinished">call'GetActive 'иштебей калды,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation type="unfinished">Экран сактагыч% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation type="unfinished">активдүү</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation type="unfinished">жигердүү</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation type="unfinished">call'GetInhibitors 'ийгиликсиз,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation type="unfinished">Экран сактагычка тоскоол болбойт.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation type="unfinished">Экран сактагычты төмөнкүлөр тоскоол кылып жатат:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation type="unfinished">call'GetActive 'иштебей калды,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation type="unfinished">Экран сактагыч учурда иштебейт.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation type="unfinished">call'GetActiveTime 'иштебей калды,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation type="unfinished">Экран сактагычты жандырууга тыюу салыңыз. Командалык блоктор ингибитордук учурда активдүү.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Экранды токтотуучу чалуучу колдонмо</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Экранды токтотуунун себеби</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/translations/kiran-screensaver.kk_KZ.ts b/translations/kiran-screensaver.kk_KZ.ts
|
||
new file mode 100644
|
||
index 0000000..b6b6002
|
||
--- /dev/null
|
||
+++ b/translations/kiran-screensaver.kk_KZ.ts
|
||
@@ -0,0 +1,161 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>KSScreensaver</name>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="108"/>
|
||
+ <source>KSScreensaver</source>
|
||
+ <translation type="unfinished">KSCreensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="109"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">Он төрт қырық бес</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="110"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">Жұма, 27 тамыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="vanished">Құлыптан босату үшін басыңыз</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSave::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="14"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="109"/>
|
||
+ <source>Screensaver</source>
|
||
+ <translation type="unfinished">Скриншотшы</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="56"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="110"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">Он төрт қырық бес</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="72"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="111"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">Жұма, 27 тамыз</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSaver::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="94"/>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="unfinished">Құлыптан босату үшін басыңыз</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="176"/>
|
||
+ <source>MM-dd dddd</source>
|
||
+ <translation type="unfinished">Мм-кдд д</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation type="unfinished">Скриншоттың жай-күйін сұрау</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation type="unfinished">Скриншоттың белсенді болған уақытының ұзақтығын сұрау</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation type="unfinished">Экранды бірден құлыптау үшін экранды қорғау процесін іске қосу туралы хабарлайды</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">Экранның құлпын дереу ашу үшін экранды қорғау процесін іске қосу туралы хабарлайды</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation type="unfinished">Скриншотты қосу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation type="unfinished">Егер экрандаушы белсенді болса, оны өшіру</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation type="unfinished">Kiran ScreenSaver іске қосулы емес!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetActive" деп қоңырау шалу сәтсіз аяқталды,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation type="unfinished">Скриншоты% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation type="unfinished">белсенді</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation type="unfinished">белсенді емес</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetInhibitors" деп атау сәтсіз аяқталды,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation type="unfinished">Скриншот тежелмейді.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation type="unfinished">Скриншотты тежейді:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation type="unfinished">"GetActive" деп қоңырау шалу сәтсіз аяқталды,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation type="unfinished">Скриншот қазіргі уақытта белсенді емес.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation type="unfinished">"GetActiveTime" деп қоңырау шалу сәтсіз аяқталды,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation type="unfinished">Экрандаушыны белсендіруден тежеу. Тежеу кезінде пәрмен блоктары белсенді.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Экранды қорғаушыны тежейтін қоңырау шалу бағдарламасы</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Скриншотты тежеу себебі</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/translations/kiran-screensaver.mn_MN.ts b/translations/kiran-screensaver.mn_MN.ts
|
||
new file mode 100644
|
||
index 0000000..e343855
|
||
--- /dev/null
|
||
+++ b/translations/kiran-screensaver.mn_MN.ts
|
||
@@ -0,0 +1,161 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>KSScreensaver</name>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="108"/>
|
||
+ <source>KSScreensaver</source>
|
||
+ <translation type="unfinished">KSScreensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="109"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14:45</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="110"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">8-р сарын 27-ны Баасан гараг</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="vanished">Түгжээг тайлахын тулд дарна уу</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSave::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="14"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="109"/>
|
||
+ <source>Screensaver</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагч</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="56"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="110"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14:45</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="72"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="111"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">8-р сарын 27-ны Баасан гараг</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSaver::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="94"/>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="unfinished">Түгжээг тайлахын тулд дарна уу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="176"/>
|
||
+ <source>MM-dd dddd</source>
|
||
+ <translation type="unfinished">MM-dd dddd</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагчийн статусыг асуу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагч хэр удаан идэвхтэй байгааг асуу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation type="unfinished">Дэлгэцийг шууд түгжихийн тулд ажиллаж байгаа дэлгэц амраагч процессыг хэл</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">Дэлгэцийг нэн даруй онгойлгохын тулд ажиллаж байгаа дэлгэц амраагч процессыг хэлээрэй</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагчийг асаана уу</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation type="unfinished">Хэрэв дэлгэц амраагчийг идэвхтэй байгаа бол идэвхгүй болгох</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation type="unfinished">Киран дэлгэц амраагч ажиллахгүй байна!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetActive" дуудлага амжилтгүй болсон,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагч% 1 байна.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation type="unfinished">Идэвхтэй</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation type="unfinished">Идэвхгүй байна</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation type="unfinished">"GetInhibitors" дуудлага амжилтгүй болсон,% 1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагчийг хориглодоггүй.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation type="unfinished">Дэлгэц хамгаалагчийг идэвхгүй болгосон:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation type="unfinished">"GetActive" руу залгаж чадсангүй,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation type="unfinished">Дэлгэц хамгаалагч одоогоор идэвхжээгүй байна.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation type="unfinished">"GetActiveTime" руу залгаж чадсангүй,% 1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагчийг идэвхжүүлэхийг идэвхгүй болгох. Идэвхжүүлэх үед командын блокийг дарах.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагч руу дуудлага хийхийг хориглох</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">Дэлгэц амраагчийг идэвхгүй болгох шалтгаанууд</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
diff --git a/translations/kiran-screensaver.ug_CN.ts b/translations/kiran-screensaver.ug_CN.ts
|
||
new file mode 100644
|
||
index 0000000..f6700fc
|
||
--- /dev/null
|
||
+++ b/translations/kiran-screensaver.ug_CN.ts
|
||
@@ -0,0 +1,161 @@
|
||
+<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_CN">
|
||
+<context>
|
||
+ <name>KSScreensaver</name>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="108"/>
|
||
+ <source>KSScreensaver</source>
|
||
+ <translation type="unfinished">KSScreensaver</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="109"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14 قىرىق بەش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../build/kiran-screensaver_autogen/include/ui_ks-screensaver.h" line="110"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">8ئاينىڭ 27-كۈنى جۈمە كۈنى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="vanished">قۇلۇپ ئېچىش ئۈچۈن چېكىڭ</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSave::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="14"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="109"/>
|
||
+ <source>Screensaver</source>
|
||
+ <translation type="unfinished">ئېكران كۆرگەزمىچى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="56"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="110"/>
|
||
+ <source>14:45</source>
|
||
+ <translation type="unfinished">14 قىرىق بەش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.ui" line="72"/>
|
||
+ <location filename="../cmake-build-debug/kiran-screensaver_autogen/include/ui_screensaver.h" line="111"/>
|
||
+ <source>8月27日 星期五</source>
|
||
+ <translation type="unfinished">8ئاينىڭ 27-كۈنى جۈمە كۈنى</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>Kiran::ScreenSaver::Screensaver</name>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="94"/>
|
||
+ <source>Click to unlock</source>
|
||
+ <translation type="unfinished">قۇلۇپ ئېچىش ئۈچۈن چېكىڭ</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../src/screensaver/screensaver.cpp" line="176"/>
|
||
+ <source>MM-dd dddd</source>
|
||
+ <translation type="unfinished">MM- dddd</translation>
|
||
+ </message>
|
||
+</context>
|
||
+<context>
|
||
+ <name>QCoreApplication</name>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="74"/>
|
||
+ <source>Query the state of the screensaver</source>
|
||
+ <translation type="unfinished">ئېكران كۆرگۈچىنىڭ ھالىتىنى سۈرۈشتۈرۈش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="75"/>
|
||
+ <source>Query the length of time the screensaver has been active</source>
|
||
+ <translation type="unfinished">ئېكران كۆرگۈچىنىڭ ۋاقتىنى سۈرۈشتۈرۈش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="76"/>
|
||
+ <source>Tells the running screensaver process to lock the screen immediately</source>
|
||
+ <translation type="unfinished">ئىجرا قىلىدىغان ئېكران كۆرگۈ جەريانىنى دەرھال ئېكران قۇلۇپلاشنى ئۇقتۇرىدۇ</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="77"/>
|
||
+ <source>Tells the running screensaver process to unlock the screen immediately</source>
|
||
+ <translation type="unfinished">ئىجرا قىلىدىغان ئېكران كۆرگۈ جەريانىنى ئېيتىپ، ئېكراننىڭ قۇلۇپىنى دەرھال ئېچىش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="78"/>
|
||
+ <source>Turn the screensaver on</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانىنى ئېچىش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="79"/>
|
||
+ <source>If the screensaver is active then deactivate it</source>
|
||
+ <translation type="unfinished">ئەگەر ئېكران ئېكرانى ئاكتىپ بولسا، ئۇنى توختىتىش</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="94"/>
|
||
+ <source>Kiran ScreenSaver is not running!</source>
|
||
+ <translation type="unfinished">كىرەن ScreenSaver يۈرۈشمەيۋاتىدۇ!</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="104"/>
|
||
+ <source>call 'GetActive' failed,%1.</source>
|
||
+ <translation type="unfinished">'GetActive' دەپ چاقىرىش مەغلۇپ بولدى،٪1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>The screensaver is %1.</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانى ٪1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>active</source>
|
||
+ <translation type="unfinished">ئاكتىپ</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="110"/>
|
||
+ <source>inactive</source>
|
||
+ <translation type="unfinished">جانسىز</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="116"/>
|
||
+ <source>call 'GetInhibitors' failed,%1.</source>
|
||
+ <translation type="unfinished">'GetInhibitors' دەپ چاقىرىش مەغلۇپ بولدى،٪1.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="122"/>
|
||
+ <source>The screensaver is not inhibited.</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانى چەكلەنمەيدۇ.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="126"/>
|
||
+ <source>The screensaver is being inhibited by:</source>
|
||
+ <translation type="unfinished">ئىكراننى چەكلىمەكتە:</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="139"/>
|
||
+ <source>call 'GetActive' failed,%1</source>
|
||
+ <translation type="unfinished">'GetActive' دەپ چاقىرىش مەغلۇپ بولدى،٪1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="147"/>
|
||
+ <source>The screensaver is not currently active.</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانى نۆۋەتتە ئاكتىپ ئەمەس.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="155"/>
|
||
+ <source>call 'GetActiveTime' failed,%1</source>
|
||
+ <translation type="unfinished">'GetActiveTime' دەپ چاقىرىش مەغلۇپ بولدى،٪1</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="80"/>
|
||
+ <source>Inhibit the screensaver from activating. Command blocks while inhibit is active.</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانى قوزغىتىشتىن چەكلەيدۇ. توسۇش ھەرىكەتچان ۋاقىتتا بۇيرۇق بۆلەكلىرى.</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="81"/>
|
||
+ <source>The calling application that is inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">ئىكراننى چەكلەۋاتقان چاقىرىش ئەپ دېتالى</translation>
|
||
+ </message>
|
||
+ <message>
|
||
+ <location filename="../tools/kiran-screensaver-command/main.cpp" line="82"/>
|
||
+ <source>The reason for inhibiting the screensaver</source>
|
||
+ <translation type="unfinished">ئېكران ئېكرانى ئىششىقىنىڭ چەكلىنىش سەۋەبى</translation>
|
||
+ </message>
|
||
+</context>
|
||
+</TS>
|
||
\ No newline at end of file
|
||
--
|
||
2.33.0
|
||
|