Changeset 1044
- Timestamp:
- 01/04/08 10:19:41 (1 year ago)
- Files:
-
- DRIM_GUI/lime-cron/trunk/ChangeLog (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/acinclude.m4 (added)
- DRIM_GUI/lime-cron/trunk/configure.ac (modified) (2 diffs)
- DRIM_GUI/lime-cron/trunk/croncycletask.cpp (modified) (2 diffs)
- DRIM_GUI/lime-cron/trunk/croncycletask.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/cronmaingui.cpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/cronmaingui.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/cronsystemtask.cpp (modified) (3 diffs)
- DRIM_GUI/lime-cron/trunk/cronsystemtask.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/lime-cron.spec.in (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/lmc-snapin/cronitem.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/lmc-snapin/cronsnapin.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/monthselectgui.cpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/monthselectgui.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/newtaskwizardgui.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/oneshottask.cpp (modified) (3 diffs)
- DRIM_GUI/lime-cron/trunk/oneshottask.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/po/ja.po (modified) (8 diffs)
- DRIM_GUI/lime-cron/trunk/po/ko.po (modified) (15 diffs)
- DRIM_GUI/lime-cron/trunk/po/zh_CN.po (modified) (8 diffs)
- DRIM_GUI/lime-cron/trunk/po/zh_TW.po (modified) (8 diffs)
- DRIM_GUI/lime-cron/trunk/scheduledtask.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/scheduledtaskpool.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/tasklistviewitem.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/taskpropertygui.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/taskrawpropertygui.hpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/weekdayselectgui.cpp (modified) (1 diff)
- DRIM_GUI/lime-cron/trunk/weekdayselectgui.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
DRIM_GUI/lime-cron/trunk/ChangeLog
r553 r1044 1 2007-11-07 cvsdcwang <dcwang@redflag-linux.com> 2 3 * croncycletask.cpp, cronsystemtask.cpp, oneshottask.cpp: merge 4 with ax30_mt: support non-latin1 task perform, description 5 6 2007-09-26 cvsdcwang <dcwang@redflag-linux.com> 7 8 * extractxmlfromhtml: export correct LANG variable when html -> xml 9 1 10 2007-09-18 cvsdcwang <cvsdcwang@swida> 2 11 DRIM_GUI/lime-cron/trunk/configure.ac
r553 r1044 3 3 4 4 AC_PREREQ(2.59) 5 AC_INIT(lime-cron, 0.9. 7, lingzhang@redflag-linux.com)5 AC_INIT(lime-cron, 0.9.8, lingzhang@redflag-linux.com) 6 6 AM_INIT_AUTOMAKE 7 7 AC_CONFIG_SRCDIR([cronmaingui.cpp]) … … 63 63 AC_SUBST(LMC_CFLAGS)]) 64 64 65 ###################################################66 65 67 if test "x$datadir" != "x\${prefix}/share"; then68 tempDir=$datadir66 if test x"$docdir" != x""; then 67 pkgdocdir=${docdir} 69 68 else 70 if test "x$prefix" != "xNONE"; then 71 tempDir=${prefix}/share 72 else 73 tempDir=${ac_default_prefix}/share 74 fi 69 pkgdocdir=${datadir}/doc/${PACKAGE_NAME} 70 fi 71 pkgdatadir=${datadir}/${PACKAGE_NAME} 72 AC_DEFINE_DIR(PKGDOCDIR,[pkgdocdir], 73 [location where help file will be installed]) 74 AC_DEFINE_DIR(PKGDATADIR,[pkgdatadir], 75 [location where data files, predefinetasks.lst will be here]) 76 77 if test x"$localedir" == x""; then 78 localedir=${datadir}/locale 75 79 fi 76 80 77 pkgdocdir=${tempDir}/doc/lime/${PACKAGE_NAME} 78 AC_DEFINE_UNQUOTED(PKGDOCDIR,"${pkgdocdir}", 79 [location where help file will be installed]) 80 AC_DEFINE_UNQUOTED(PKGDATADIR,"${tempDir}/${PACKAGE_NAME}", 81 [location where data files, predefinetasks.lst will be here]) 82 AC_DEFINE_UNQUOTED(LOCALEDIR,"${tempDir}/locale", 81 AC_DEFINE_DIR(LOCALEDIR,[localedir], 83 82 [location where locale files will be installed]) 84 83 AC_SUBST(pkgdocdir) DRIM_GUI/lime-cron/trunk/croncycletask.cpp
r553 r1044 28 28 { 29 29 CIMInstance *inst=new CIMInstance(CIMName(CIM_CLASSNAME)); 30 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform ));30 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform.utf8())); 31 31 inst->setProperty(CIMName(PROP_FREQUENCY),CIMValue(UInt16(frequence))); 32 32 inst->setProperty(CIMName(PROP_SETTINGID),CIMValue("0")); … … 45 45 { 46 46 instanceName = CIMObjectPath("",inst); 47 perform = inst.getPropertyValue(PROP_PERFORM).toString().c_str();47 perform = QString::fromUtf8(inst.getPropertyValue(PROP_PERFORM).toString().c_str()); 48 48 frequence = inst.getPropertyValue(PROP_FREQUENCY).toUInt16(); 49 49 return *this; DRIM_GUI/lime-cron/trunk/croncycletask.hpp
r553 r1044 1 1 /* 2 * $Id: croncycletask.hpp,v 1.2 2007/03/13 09:25:56cvsdcwang Exp $2 * $Id: croncycletask.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef CRONCYCLETASK_HPP DRIM_GUI/lime-cron/trunk/cronmaingui.cpp
r553 r1044 1 1 /* 2 * $Id: cronmaingui.cpp,v 1.18 2007/08/15 00:42:24cvsdcwang Exp $2 * $Id: cronmaingui.cpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #include "cronmaingui.hpp" DRIM_GUI/lime-cron/trunk/cronmaingui.hpp
r553 r1044 1 1 /* 2 * $Id: cronmaingui.hpp,v 1.3 2007/04/05 09:29:41cvsdcwang Exp $2 * $Id: cronmaingui.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef CRONMAINGUI_HPP DRIM_GUI/lime-cron/trunk/cronsystemtask.cpp
r553 r1044 149 149 month = inst.getPropertyValue(PROP_MONTH).toString().c_str(); 150 150 status = inst.getPropertyValue(PROP_STATUS).toString().c_str(); 151 description = inst.getPropertyValue(PROP_DESC).toString().c_str(); 152 perform = inst.getPropertyValue(PROP_PERFORM).toString().c_str(); 153 151 description = QString::fromUtf8(inst.getPropertyValue(PROP_DESC).toString().c_str()); 152 perform = QString::fromUtf8(inst.getPropertyValue(PROP_PERFORM).toString().c_str()); 154 153 return *this; 155 154 } … … 340 339 { 341 340 CIMInstance *inst=new CIMInstance(CIMName(CIM_CLASSNAME)); 342 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform ));343 inst->setProperty(CIMName(PROP_DESC),CIMValue(description ));341 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform.utf8())); 342 inst->setProperty(CIMName(PROP_DESC),CIMValue(description.utf8())); 344 343 inst->setProperty(CIMName(PROP_STATUS),CIMValue(status)); 345 344 inst->setProperty(CIMName(PROP_MINUTE),CIMValue(minute)); … … 360 359 { 361 360 CIMInstance inst = client->getInstance(instanceName); 362 inst.setProperty(CIMName(PROP_PERFORM),CIMValue(perform ));363 inst.setProperty(CIMName(PROP_DESC),CIMValue(description ));361 inst.setProperty(CIMName(PROP_PERFORM),CIMValue(perform.utf8())); 362 inst.setProperty(CIMName(PROP_DESC),CIMValue(description.utf8())); 364 363 inst.setProperty(CIMName(PROP_STATUS),CIMValue(status)); 365 364 inst.setProperty(CIMName(PROP_MINUTE),CIMValue(minute)); DRIM_GUI/lime-cron/trunk/cronsystemtask.hpp
r553 r1044 1 1 /* 2 * $Id: cronsystemtask.hpp,v 1.5 2007/03/29 09:06:34cvsdcwang Exp $2 * $Id: cronsystemtask.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef CRONSYSTEMTASK_HPP DRIM_GUI/lime-cron/trunk/lime-cron.spec.in
r553 r1044 55 55 56 56 %changelog 57 * Thu Oct 11 2007 Diancheng Wang <dcwang@redflag-linux.com> 0.9.8-1 58 - correct wrong manual caused by auto generated using extractxmlfromhtml. 59 57 60 * Mon Sep 17 2007 Diancheng Wang <dcwang@redflag-linux.com> 0.9.7-1 58 61 - update to new version 0.9.7, the first maintenance release, DRIM_GUI/lime-cron/trunk/lmc-snapin/cronitem.hpp
r553 r1044 1 1 /* 2 * $Id: cronitem.hpp,v 1.2 2007/07/03 08:49:43cvsdcwang Exp $2 * $Id: cronitem.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef CRONITEM_HPP DRIM_GUI/lime-cron/trunk/lmc-snapin/cronsnapin.hpp
r553 r1044 1 1 /* 2 * $Id: cronsnapin.hpp,v 1.1 2007/02/27 02:27:19 cvsdcwang Exp $2 * $Id: cronsnapin.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef CRONSNAPIN_H DRIM_GUI/lime-cron/trunk/monthselectgui.cpp
r553 r1044 1 1 /* 2 * $Id: monthselectgui.cpp,v 1.1.1.1 2007/02/14 04:19:17cvsdcwang Exp $2 * $Id: monthselectgui.cpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #include "monthselectgui.hpp" DRIM_GUI/lime-cron/trunk/monthselectgui.hpp
r553 r1044 1 1 /* 2 * $Id: monthselectgui.hpp,v 1.1.1.1 2007/02/14 04:19:17cvsdcwang Exp $2 * $Id: monthselectgui.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef MONTHSELECTGUI_CPP DRIM_GUI/lime-cron/trunk/newtaskwizardgui.hpp
r553 r1044 1 1 /* 2 * $Id: newtaskwizardgui.hpp,v 1.3 2007/06/22 01:33:39 cvsdcwang Exp $2 * $Id: newtaskwizardgui.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef NEWTASKWIZARDGUI_HPP DRIM_GUI/lime-cron/trunk/oneshottask.cpp
r553 r1044 27 27 { 28 28 instanceName = CIMObjectPath("",inst); 29 perform = inst.getPropertyValue(PROP_PERFORM).toString().c_str();29 perform = QString::fromUtf8(inst.getPropertyValue(PROP_PERFORM).toString().c_str()); 30 30 OpenWBEM::CIMDateTime dt = inst.getPropertyValue(PROP_STARTTIME).toCIMDateTime(); 31 31 startTime.setDate(QDate(dt.getYear(), … … 62 62 { 63 63 CIMInstance *inst=new CIMInstance(CIMName(CIM_CLASSNAME)); 64 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform ));64 inst->setProperty(CIMName(PROP_PERFORM),CIMValue(perform.utf8())); 65 65 CIMDateTime dt; 66 66 dt.setInterval(false); … … 82 82 { 83 83 CIMInstance inst = client->getInstance(instanceName); 84 inst.setProperty(CIMName(PROP_PERFORM),CIMValue(perform ));84 inst.setProperty(CIMName(PROP_PERFORM),CIMValue(perform.utf8())); 85 85 CIMDateTime dt; 86 86 dt.setInterval(false); DRIM_GUI/lime-cron/trunk/oneshottask.hpp
r553 r1044 1 1 /* 2 * $Id: oneshottask.hpp,v 1.2 2007/03/13 09:25:56cvsdcwang Exp $2 * $Id: oneshottask.hpp,v 2.1 2007/10/26 09:52:59 cvsdcwang Exp $ 3 3 */ 4 4 #ifndef ONESHOTTASK_HPP DRIM_GUI/lime-cron/trunk/po/ja.po
r553 r1044 9 9 "Project-Id-Version: lime-cron 0.9.4\n" 10 10 "Report-Msgid-Bugs-To: dcwang@redflag-linux.com\n" 11 "POT-Creation-Date: 2007- 07-13 10:05+0800\n"11 "POT-Creation-Date: 2007-11-07 11:26+0800\n" 12 12 "PO-Revision-Date: 2007-07-13 10:07+0800\n" 13 13 "Last-Translator: Mika Kamei <mkamei@miraclelinux.com>\n" … … 21 21 msgstr "ãã¹ã" 22 22 23 #: cronmaingui.cpp:115 cronmaingui.cpp:127 cronmaingui.cpp:20 224 #: cronmaingui.cpp:24 0 cronmaingui.cpp:282 cronmaingui.cpp:30325 #: cronmaingui.cpp:33 3 cronmaingui.cpp:344newtaskwizardgui.cpp:11323 #: cronmaingui.cpp:115 cronmaingui.cpp:127 cronmaingui.cpp:204 24 #: cronmaingui.cpp:242 cronmaingui.cpp:286 cronmaingui.cpp:309 25 #: cronmaingui.cpp:339 cronmaingui.cpp:350 newtaskwizardgui.cpp:113 26 26 #: newtaskwizardgui.cpp:342 newtaskwizardgui.cpp:348 taskpropertygui.cpp:262 27 27 #: taskpropertygui.cpp:299 taskpropertygui.cpp:365 taskpropertygui.cpp:393 28 28 #: taskpropertygui.cpp:399 taskpropertygui.cpp:406 taskrawpropertygui.cpp:104 29 29 #: lmc-snapin/cronitem.cpp:160 lmc-snapin/cronitem.cpp:171 30 #: lmc-snapin/cronitem.cpp:2 18 lmc-snapin/cronitem.cpp:25531 #: lmc-snapin/cronitem.cpp:39 6 lmc-snapin/cronitem.cpp:41630 #: lmc-snapin/cronitem.cpp:220 lmc-snapin/cronitem.cpp:257 31 #: lmc-snapin/cronitem.cpp:399 lmc-snapin/cronitem.cpp:420 32 32 msgid "Error - %1" 33 33 msgstr "ãšã©ãŒ - %1" 34 34 35 #: cronmaingui.cpp:116 cronmaingui.cpp:128 cronmaingui.cpp:3 3436 #: cronmaingui.cpp:3 45lmc-snapin/cronitem.cpp:161 lmc-snapin/cronitem.cpp:17235 #: cronmaingui.cpp:116 cronmaingui.cpp:128 cronmaingui.cpp:340 36 #: cronmaingui.cpp:351 lmc-snapin/cronitem.cpp:161 lmc-snapin/cronitem.cpp:172 37 37 msgid "can not get tasks, " 38 38 msgstr "ã¿ã¹ã¯ãååŸã§ããŸããã" 39 39 40 #: cronmaingui.cpp:20 3 lmc-snapin/cronitem.cpp:21940 #: cronmaingui.cpp:205 lmc-snapin/cronitem.cpp:221 41 41 msgid "can not create the scheduled task, " 42 42 msgstr "ã¿ã¹ã¯ãäœæã§ããŸããã" 43 43 44 #: cronmaingui.cpp:22 6 lmc-snapin/cronitem.cpp:24144 #: cronmaingui.cpp:228 lmc-snapin/cronitem.cpp:243 45 45 msgid "Warning - %1" 46 46 msgstr "èŠå - %1" 47 47 48 #: cronmaingui.cpp:22 7 lmc-snapin/cronitem.cpp:24248 #: cronmaingui.cpp:229 lmc-snapin/cronitem.cpp:244 49 49 msgid "Do you really want to delete this scheduled task?" 50 50 msgstr "æ¬åœã«ãã®ã¿ã¹ã¯ãåé€ããŸããïŒ" 51 51 52 #: cronmaingui.cpp:24 1 lmc-snapin/cronitem.cpp:25652 #: cronmaingui.cpp:243 lmc-snapin/cronitem.cpp:258 53 53 msgid "can not delete the scheduled task, " 54 54 msgstr "ã¿ã¹ã¯ãåé€ã§ããŸããã" 55 55 56 #: cronmaingui.cpp:28 3 cronmaingui.cpp:304 lmc-snapin/cronitem.cpp:39757 #: lmc-snapin/cronitem.cpp:4 1756 #: cronmaingui.cpp:287 cronmaingui.cpp:310 lmc-snapin/cronitem.cpp:400 57 #: lmc-snapin/cronitem.cpp:421 58 58 msgid "can not modify the scheduled task, " 59 59 msgstr "ã¿ã¹ã¯ã倿Žã§ããŸããã" 60 60 61 #: cronmaingui.cpp:3 86 cronmaingui.cpp:45561 #: cronmaingui.cpp:392 cronmaingui.cpp:461 62 62 msgid "Current Host" 63 63 msgstr "çŸåšã®ãã¹ã" 64 64 65 #: cronmaingui.cpp:4 04 cronmaingui.cpp:447 cronmaingui.cpp:47665 #: cronmaingui.cpp:410 cronmaingui.cpp:453 cronmaingui.cpp:482 66 66 msgid "Unknown Error" 67 67 msgstr "äžæãªãšã©ãŒ" 68 68 69 #: cronmaingui.cpp:4 1969 #: cronmaingui.cpp:425 70 70 msgid "Distribute The Scheduled Task To Other Hosts" 71 71 msgstr "ã¿ã¹ã¯ãä»ã®ãã¹ããžé 72 72 åžããŸã" 73 73 74 #: cronmaingui.cpp: 49674 #: cronmaingui.cpp:502 75 75 msgid "Delete The Scheduled Task From Other Hosts" 76 76 msgstr "ã¿ã¹ã¯ãä»ã®ãã¹ãããåé€ããŸã" 77 77 78 #: cronmaingui.cpp:51 1 cronmainguibase.cpp:880lmc-snapin/cronitem.cpp:16079 #: lmc-snapin/cronitem.cpp:171 lmc-snapin/cronitem.cpp:2 1880 #: lmc-snapin/cronitem.cpp:24 1 lmc-snapin/cronitem.cpp:25581 #: lmc-snapin/cronitem.cpp:39 6 lmc-snapin/cronitem.cpp:41678 #: cronmaingui.cpp:517 cronmainguibase.cpp:879 lmc-snapin/cronitem.cpp:160 79 #: lmc-snapin/cronitem.cpp:171 lmc-snapin/cronitem.cpp:220 80 #: lmc-snapin/cronitem.cpp:243 lmc-snapin/cronitem.cpp:257 81 #: lmc-snapin/cronitem.cpp:399 lmc-snapin/cronitem.cpp:420 82 82 #: lmc-snapin/cronsnapin.cpp:64 83 83 msgid "Scheduled Tasks" … … 156 156 msgstr "æ¯æé" 157 157 158 #: cronsystemtask.cpp:93 taskpropertyguibase.cpp:4 16158 #: cronsystemtask.cpp:93 taskpropertyguibase.cpp:438 159 159 msgid "every day" 160 160 msgstr "æ¯æ¥" 161 161 162 #: cronsystemtask.cpp:94 taskpropertyguibase.cpp:4 18162 #: cronsystemtask.cpp:94 taskpropertyguibase.cpp:440 163 163 msgid "every month" 164 164 msgstr "æ¯æ" … … 192 192 msgstr "äºå®ã¿ã¹ã¯ã§ã¯ã³ãã³ãã®ãã©ã¡ãŒã¿ã¯æå®ã§ããŸãã" 193 193 194 #: tasklistviewitem.cpp:17 lmc-snapin/cronitem.cpp:29 5194 #: tasklistviewitem.cpp:17 lmc-snapin/cronitem.cpp:297 195 195 msgid "Common Task" 196 196 msgstr "æ®éã¿ã¹ã¯" 197 197 198 #: tasklistviewitem.cpp:21 lmc-snapin/cronitem.cpp:29 7198 #: tasklistviewitem.cpp:21 lmc-snapin/cronitem.cpp:299 199 199 msgid "Predefine Task" 200 200 msgstr "äºå®ã¿ã¹ã¯" 201 201 202 #: tasklistviewitem.cpp:26 lmc-snapin/cronitem.cpp: 299202 #: tasklistviewitem.cpp:26 lmc-snapin/cronitem.cpp:301 203 203 msgid "Oneshot Task" 204 204 msgstr "åçºã¿ã¹ã¯" 205 205 206 #: tasklistviewitem.cpp:36 lmc-snapin/cronitem.cpp:31 0206 #: tasklistviewitem.cpp:36 lmc-snapin/cronitem.cpp:312 207 207 msgid "Activated" 208 208 msgstr "æå¹" 209 209 210 #: tasklistviewitem.cpp:38 lmc-snapin/cronitem.cpp:31 2210 #: tasklistviewitem.cpp:38 lmc-snapin/cronitem.cpp:314 211 211 msgid "Unknown" 212 212 msgstr "äžæ" 213 213 214 #: tasklistviewitem.cpp:40 lmc-snapin/cronitem.cpp:31 4214 #: tasklistviewitem.cpp:40 lmc-snapin/cronitem.cpp:316 215 215 msgid "Stopped" 216 216 msgstr "忢" … … 249 249 §ããŠãã ããã" 250 250 251 #: cronmainguibase.cpp:76 7 cronmainguibase.cpp:881lmc-snapin/cronitem.cpp:187251 #: cronmainguibase.cpp:766 cronmainguibase.cpp:880 lmc-snapin/cronitem.cpp:187 252 252 msgid "Classification" 253 253 msgstr "åé¡" 254 254 255 #: cronmainguibase.cpp:76 8 cronmainguibase.cpp:882 taskpropertyguibase.cpp:411255 #: cronmainguibase.cpp:767 cronmainguibase.cpp:881 taskpropertyguibase.cpp:433 256 256 msgid "Task" 257 257 msgstr "ã¿ã¹ã¯" 258 258 259 #: cronmainguibase.cpp:76 9 cronmainguibase.cpp:883 taskpropertyguibase.cpp:445259 #: cronmainguibase.cpp:768 cronmainguibase.cpp:882 taskpropertyguibase.cpp:467 260 260 #: lmc-snapin/cronitem.cpp:189 261 261 msgid "Schedule" 262 262 msgstr "ã¹ã±ãžã¥ãŒã«" 263 263 264 #: cronmainguibase.cpp:7 70 cronmainguibase.cpp:884lmc-snapin/cronitem.cpp:190264 #: cronmainguibase.cpp:769 cronmainguibase.cpp:883 lmc-snapin/cronitem.cpp:190 265 265 msgid "Next Run Time" 266 266 msgstr "次åå®è¡æå»" 267 267 268 #: cronmainguibase.cpp:77 1 cronmainguibase.cpp:885lmc-snapin/cronitem.cpp:191268 #: cronmainguibase.cpp:770 cronmainguibase.cpp:884 lmc-snapin/cronitem.cpp:191 269 269 msgid "Status" 270 270 msgstr "ã¹ããŒã¿ã¹" 271 271 272 #: cronmainguibase.cpp:88 6272 #: cronmainguibase.cpp:885 273 273 msgid "User Manual" 274 274 msgstr "ãŠãŒã¶ããã¥ã¢ã«" 275 275 276 #: cronmainguibase.cpp:88 7276 #: cronmainguibase.cpp:886 277 277 msgid "User &Manual" 278 278 msgstr "ãŠãŒã¶ããã¥ã¢ã«(&M)" 279 279 280 #: cronmainguibase.cpp:88 8280 #: cronmainguibase.cpp:887 281 281 msgid "Open the Scheduled Tasks user manual" 282 282 msgstr "ã¿ã¹ã¯ã¹ã±ãžã¥ãŒã©ã®ãŠãŒã¶ããã¥ã¢ã«ãéã" 283 283 284 #: cronmainguibase.cpp:8 90 cronmainguibase.cpp:892284 #: cronmainguibase.cpp:889 cronmainguibase.cpp:891 285 285 msgid "Refresh" 286 286 msgstr "æŽæ°" 287 287 288 #: cronmainguibase.cpp:89 1288 #: cronmainguibase.cpp:890 289 289 msgid "Re&fresh" 290 290 msgstr "æŽæ°(&F)" 291 291 292 #: cronmainguibase.cpp:89 3292 #: cronmainguibase.cpp:892 293 293 msgid "Refresh all schedule tasks information from host" 294 294 msgstr "ãã¹ãããã®ãã¹ãŠã®ã¿ã¹ã¯æ 295 295 å ±ãæŽæ°" 296 296 297 #: cronmainguibase.cpp:89 4297 #: cronmainguibase.cpp:893 298 298 msgid "F5" 299 299 msgstr "F5" 300 300 301 #: cronmainguibase.cpp:89 5301 #: cronmainguibase.cpp:894 302 302 msgid "Exit" 303 303 msgstr "çµäº" 304 304 305 #: cronmainguibase.cpp:89 6305 #: cronmainguibase.cpp:895 306 306 msgid "E&xit" 307 307 msgstr "çµäº(&X)" 308 308 309 #: cronmainguibase.cpp:89 7309 #: cronmainguibase.cpp:896 310 310 msgid "Quit the application" 311 311 msgstr "ã¢ããªã±ãŒã·ã§ã³ã®çµäº" 312 312 313 #: cronmainguibase.cpp:89 8313 #: cronmainguibase.cpp:897 314 314 msgid "About" 315 315 msgstr "æ 316 316 å ±" 317 317 318 #: cronmainguibase.cpp:89 9318 #: cronmainguibase.cpp:898 319 319 msgid "&About" 320 320 msgstr "æ 321 321 å ±(&A)" 322 322 323 #: cronmainguibase.cpp: 900323 #: cronmainguibase.cpp:899 324 324 msgid "Display infomation about Scheduled Tasks" 325 325 msgstr "ã¿ã¹ã¯ã®æ 326 326 å ±ã衚瀺ããŸã" 327 327 328 #: cronmainguibase.cpp:90 1328 #: cronmainguibase.cpp:900 329 329 msgid "Open Host" 330 330 msgstr "ãã¹ããéã" 331 331 332 #: cronmainguibase.cpp:90 2332 #: cronmainguibase.cpp:901 333 333 msgid "&Open Host..." 334 334 msgstr "ãã¹ããéã(&O)..." 335 335 336 #: cronmainguibase.cpp:90 3336 #: cronmainguibase.cpp:902 337 337 msgid "Connect a Host" 338 338 msgstr "ãã¹ãã«æ¥ç¶" 339 339 340 #: cronmainguibase.cpp:90 4340 #: cronmainguibase.cpp:903 341 341 msgid "Show open host dialog, connect a host" 342 342 msgstr "ãã¹ããéããã€ã¢ãã°ã衚瀺ãããã¹ããžæ¥ç¶ãã" 343 343 344 #: cronmainguibase.cpp:90 5344 #: cronmainguibase.cpp:904 345 345 msgid "Ctrl+O" 346 346 msgstr "Ctrl+O" 347 347 348 #: cronmainguibase.cpp:90 6 cronmainguibase.cpp:908348 #: cronmainguibase.cpp:905 cronmainguibase.cpp:907 349 349 msgid "Scan Hosts" 350 350 msgstr "ãã¹ãã®æ€çŽ¢" 351 351 352 #: cronmainguibase.cpp:90 7352 #: cronmainguibase.cpp:906 353 353 msgid "&Scan Hosts..." 354 354 msgstr "ãã¹ãã®æ€çŽ¢(&S)..." 355 355 356 #: cronmainguibase.cpp:90 9356 #: cronmainguibase.cpp:908 357 357 msgid "Open scan host dialog, scan manageable hosts in LAN" 358 358 msgstr "ãã¹ãã®æ€çŽ¢ãã€ã¢ãã°ãéããLANå 359 359 ã§ç®¡çå¯èœãªãã¹ããæ€çŽ¢ããŸã" 360 360 361 #: cronmainguibase.cpp:9 10361 #: cronmainguibase.cpp:909 362 362 msgid "Ctrl+H" 363 363 msgstr "Ctrl+H" 364 364 365 #: cronmainguibase.cpp:91 1365 #: cronmainguibase.cpp:910 366 366 msgid "Edit" 367 367 msgstr "ç·šé" 368 368 369 #: cronmainguibase.cpp:91 2369 #: cronmainguibase.cpp:911 370 370 msgid "&Edit" 371 371 msgstr "ç·šé(&E)" 372 372 373 #: cronmainguibase.cpp:91 3 cronmainguibase.cpp:930373 #: cronmainguibase.cpp:912 cronmainguibase.cpp:929 374 374 msgid "Delete" 375 375 msgstr "åé€" 376 376 377 #: cronmainguibase.cpp:91 4 cronmainguibase.cpp:931377 #: cronmainguibase.cpp:913 cronmainguibase.cpp:930 378 378 #: lmc-snapin/cronsnapin.cpp:52 379 379 msgid "&Delete" 380 380 msgstr "åé€(&D)" 381 381 382 #: cronmainguibase.cpp:91 5 cronmainguibase.cpp:917382 #: cronmainguibase.cpp:914 cronmainguibase.cpp:916 383 383 msgid "Import Host List" 384 384 msgstr "ãã¹ãäžèЧãã€ã³ããŒã" 385 385 386 #: cronmainguibase.cpp:91 6386 #: cronmainguibase.cpp:915 387 387 msgid "&Import Host List..." 388 388 msgstr "ãã¹ãäžèЧãã€ã³ããŒã(&I)..." 389 389 390 #: cronmainguibase.cpp:91 8390 #: cronmainguibase.cpp:917 391 391 msgid "Import host list from host list file" 392 392 msgstr "ãã¹ãäžèЧãã¡ã€ã«ãããã¹ãäžèЧãã€ã³ããŒãããŸã" 393 393 394 #: cronmainguibase.cpp:91 9394 #: cronmainguibase.cpp:918 395 395 msgid "Export Host List" 396 396 msgstr "ãã¹ãäžèЧããšã¯ã¹ããŒã" 397 397 398 #: cronmainguibase.cpp:9 20398 #: cronmainguibase.cpp:919 399 399 msgid "&Export Host List..." 400 400 msgstr "ãã¹ãäžèЧããšã¯ã¹ããŒã(&E)..." 401 401 402 #: cronmainguibase.cpp:92 1402 #: cronmainguibase.cpp:920 403 403 msgid "Export host list to a host list file" 404 404 msgstr "ãã¹ãäžèЧããã¹ãäžèЧãã¡ã€ã«ãžãšã¯ã¹ããŒãããŸã" 405 405 406 #: cronmainguibase.cpp:92 2406 #: cronmainguibase.cpp:921 407 407 msgid "Toggle Host List" 408 408 msgstr "ãã¹ãäžèЧãåãæ¿ã" 409 409 410 #: cronmainguibase.cpp:92 3410 #: cronmainguibase.cpp:922 411 411 msgid "&Toggle Host List" 412 412 msgstr "ãã¹ãäžèЧãåãæ¿ã(&T)" 413 413 414 #: cronmainguibase.cpp:92 4414 #: cronmainguibase.cpp:923 415 415 msgid "show or hide host list" 416 416 msgstr "ãã¹ãäžèЧã衚瀺ïŒé衚瀺ããŸã" 417 417 418 #: cronmainguibase.cpp:92 5 cronmainguibase.cpp:927418 #: cronmainguibase.cpp:924 cronmainguibase.cpp:926 419 419 msgid "New Task" 420 420 msgstr "æ°èŠã¿ã¹ã¯" 421 421 422 #: cronmainguibase.cpp:92 6422 #: cronmainguibase.cpp:925 423 423 msgid "&New Task..." 424 424 msgstr "æ°èŠã¿ã¹ã¯(&N)..." 425 425 426 #: cronmainguibase.cpp:92 8lmc-snapin/cronsnapin.cpp:49426 #: cronmainguibase.cpp:927 lmc-snapin/cronsnapin.cpp:49 427 427 msgid "Add a new scheduled task" 428 428 msgstr "æ°èŠã¿ã¹ã¯ã远å ããŸãã" 429 429 430 #: cronmainguibase.cpp:92 9430 #: cronmainguibase.cpp:928 431 431 msgid "Ctrl+N" 432 432 msgstr "Ctrl+N" 433 433 434 #: cronmainguibase.cpp:93 2434 #: cronmainguibase.cpp:931 435 435 msgid "Delete Current Task" 436 436 msgstr "çŸåšã®ã¿ã¹ã¯ã®åé€" 437 437 438 #: cronmainguibase.cpp:93 3lmc-snapin/cronsnapin.cpp:53438 #: cronmainguibase.cpp:932 lmc-snapin/cronsnapin.cpp:53 439 439 msgid "Delete the selected scheduled task" 440 440 msgstr "éžæãããã¿ã¹ã¯ãåé€ããŸã" 441 441 442 #: cronmainguibase.cpp:93 4442 #: cronmainguibase.cpp:933 443 443 msgid "Del" 444 444 msgstr "åé€" 445 445 446 #: cronmainguibase.cpp:93 5446 #: cronmainguibase.cpp:934 447 447 msgid "Properties" 448 448 msgstr "ããããã£" 449 449 450 #: cronmainguibase.cpp:93 6450 #: cronmainguibase.cpp:935 451 451 msgid "&Properties..." 452 452 msgstr "ããããã£(&P)..." 453 453 454 #: cronmainguibase.cpp:93 7454 #: cronmainguibase.cpp:936 455 455 msgid "Open the Property Dialog" 456 456 msgstr "ããããã£ãã€ã¢ãã°ãéã" 457 457 458 #: cronmainguibase.cpp:93 8458 #: cronmainguibase.cpp:937 459 459 msgid "Open the property dialog, show or modify current scheduled task" 460 460 msgstr "ããããã£ãã€ã¢ãã°ãéããçŸåšã®ã¿ã¹ã¯ã衚瀺ïŒä¿®æ£ããŸã" 461 461 462 #: cronmainguibase.cpp:94 1 cronmainguibase.cpp:943462 #: cronmainguibase.cpp:940 cronmainguibase.cpp:942 463 463 msgid "Distribute To Other Hosts" 464 464 msgstr "ä»ã®ãã¹ããžé 465 465 åž" 466 466 467 #: cronmainguibase.cpp:94 2467 #: cronmainguibase.cpp:941 468 468 msgid "D&istribute To Other Hosts..." 469 469 msgstr "ä»ã®ãã¹ããžé 470 470 åž(&I)..." 471 471 472 #: cronmainguibase.cpp:94 4472 #: cronmainguibase.cpp:943 473 473 msgid "Distribute selected scheduled task to other hosts in host list" 474 474 msgstr "éžæäžã®ã¿ã¹ã¯ããã¹ãäžèЧäžã®ä»ã®ãã¹ãã«é 475 475 åžããŸã" 476 476 477 #: cronmainguibase.cpp:94 5 cronmainguibase.cpp:947477 #: cronmainguibase.cpp:944 cronmainguibase.cpp:946 478 478 msgid "Delete From Other Hosts" 479 479 msgstr "ä»ã®ãã¹ãããåé€" 480 480 481 #: cronmainguibase.cpp:94 6481 #: cronmainguibase.cpp:945 482 482 msgid "D&elete From Other Hosts..." 483 483 msgstr "ä»ã®ãã¹ãããåé€(&E)..." 484 484 485 #: cronmainguibase.cpp:94 8485 #: cronmainguibase.cpp:947 486 486 msgid "Delete same scheduled task with current selected one on other hosts" 487 487 msgstr "ä»ã®ãã¹ãã«ããéžæäžã®ã¿ã¹ã¯ãšåããã®ãåé€ããŸã" 488 488 489 #: cronmainguibase.cpp:95 1489 #: cronmainguibase.cpp:950 490 490 msgid "&File" 491 491 msgstr "ãã¡ã€ã«(&F)" 492 492 493 #: cronmainguibase.cpp:95 3493 #: cronmainguibase.cpp:952 494 494 msgid "&Action" 495 495 msgstr "ã¢ã¯ã·ã§ã³(&A)" 496 496 497 #: cronmainguibase.cpp:95 5497 #: cronmainguibase.cpp:954 498 498 msgid "&Help" 499 499 msgstr "ãã«ã(&H)" 500 500 501 #: monthselectguibase.cpp:13 1501 #: monthselectguibase.cpp:130 502 502 msgid "Select Month" 503 503 msgstr "æãéžæ" 504 504 505 #: monthselectguibase.cpp:13 2505 #: monthselectguibase.cpp:131 506 506 msgid "Please Select the Month:" 507 507 msgstr "æãéžæããŠãã ããã" 508 508 509 #: monthselectguibase.cpp:13 3 newtaskwizardguibase.cpp:1689509 #: monthselectguibase.cpp:132 newtaskwizardguibase.cpp:1688 510 510 msgid "Jan" 511 511 msgstr "1æ" 512 512 513 #: monthselectguibase.cpp:13 4 newtaskwizardguibase.cpp:1683513 #: monthselectguibase.cpp:133 newtaskwizardguibase.cpp:1682 514 514 msgid "Feb" 515 515 msgstr "2æ" 516 516 517 #: monthselectguibase.cpp:13 5 newtaskwizardguibase.cpp:1686517 #: monthselectguibase.cpp:134 newtaskwizardguibase.cpp:1685 518 518 msgid "Mar" 519 519 msgstr "3æ" 520 520 521 #: monthselectguibase.cpp:13 6 newtaskwizardguibase.cpp:1685521 #: monthselectguibase.cpp:135 newtaskwizardguibase.cpp:1684 522 522 msgid "Apr" 523 523 msgstr "4æ" 524 524 525 #: monthselectguibase.cpp:13 7 newtaskwizardguibase.cpp:1684525 #: monthselectguibase.cpp:136 newtaskwizardguibase.cpp:1683 526 526 msgid "May" 527 527 msgstr "5æ" 528 528 529 #: monthselectguibase.cpp:13 8 newtaskwizardguibase.cpp:1682529 #: monthselectguibase.cpp:137 newtaskwizardguibase.cpp:1681 530 530 msgid "Jun" 531 531 msgstr "6æ" 532 532 533 #: monthselectguibase.cpp:13 9 newtaskwizardguibase.cpp:1692533 #: monthselectguibase.cpp:138 newtaskwizardguibase.cpp:1691 534 534 msgid "Jul" 535 535 msgstr "7æ" 536 536 537 #: monthselectguibase.cpp:1 40 newtaskwizardguibase.cpp:1690537 #: monthselectguibase.cpp:139 newtaskwizardguibase.cpp:1689 538 538 msgid "Aug" 539 539 msgstr "8æ" 540 540 541 #: monthselectguibase.cpp:14 1 newtaskwizardguibase.cpp:1688541 #: monthselectguibase.cpp:140 newtaskwizardguibase.cpp:1687 542 542 msgid "Sep" 543 543 msgstr "9æ" 544 544 545 #: monthselectguibase.cpp:14 2 newtaskwizardguibase.cpp:1691545 #: monthselectguibase.cpp:141 newtaskwizardguibase.cpp:1690 546 546 msgid "Oct" 547 547 msgstr "10æ" 548 548 549 #: monthselectguibase.cpp:14 3 newtaskwizardguibase.cpp:1687549 #: monthselectguibase.cpp:142 newtaskwizardguibase.cpp:1686 550 550 msgid "Nov" 551 551 msgstr "11æ" 552 552 553 #: monthselectguibase.cpp:14 4 newtaskwizardguibase.cpp:1681553 #: monthselectguibase.cpp:143 newtaskwizardguibase.cpp:1680 554 554 msgid "Dec" 555 555 msgstr "12æ" 556 556 557 #: monthselectguibase.cpp:14 5 taskpropertyguibase.cpp:402558 #: taskrawpropertyguibase.cpp: 298 weekdayselectguibase.cpp:105557 #: monthselectguibase.cpp:144 taskpropertyguibase.cpp:424 558 #: taskrawpropertyguibase.cpp:309 weekdayselectguibase.cpp:106 559 559 msgid "OK" 560 560 msgstr "OK" 561 561 562 #: monthselectguibase.cpp:14 6 taskpropertyguibase.cpp:403563 #: taskrawpropertyguibase.cpp: 299 weekdayselectguibase.cpp:97562 #: monthselectguibase.cpp:145 taskpropertyguibase.cpp:425 563 #: taskrawpropertyguibase.cpp:310 weekdayselectguibase.cpp:98 564 564 msgid "Cancel" 565 565 msgstr "ãã£ã³ã»ã«" 566 566 567 #: newtaskwizardguibase.cpp:115 2 newtaskwizardguibase.cpp:1641567 #: newtaskwizardguibase.cpp:1151 newtaskwizardguibase.cpp:1640 568 568 msgid "Caption" 569 569 msgstr "ã¿ã€ãã«" 570 570 571 #: newtaskwizardguibase.cpp:115 3 newtaskwizardguibase.cpp:1642571 #: newtaskwizardguibase.cpp:1152 newtaskwizardguibase.cpp:1641 572 572 msgid "Command" 573 573 msgstr "ã³ãã³ã" 574 574 575 #: newtaskwizardguibase.cpp:115 4 newtaskwizardguibase.cpp:1643575 #: newtaskwizardguibase.cpp:1153 newtaskwizardguibase.cpp:1642 576 576 msgid "Description" 577 577 msgstr "説æ" 578 578 579 #: newtaskwizardguibase.cpp:163 2579 #: newtaskwizardguibase.cpp:1631 580 580 msgid "New Task Wizard" 581 581 msgstr "æ°èŠã¿ã¹ã¯ãŠã£ã¶ãŒã" 582 582 583 #: newtaskwizardguibase.cpp:163 3583 #: newtaskwizardguibase.cpp:1632 584 584 msgid "" 585 585 "This wizard helps you schedule a task for cron \n" … … 597 597 "ç¶è¡ãããªããæ¬¡ãžããã¯ãªãã¯ããŠãã ããã" 598 598 599 #: newtaskwizardguibase.cpp:164 4599 #: newtaskwizardguibase.cpp:1643 600 600 msgid "" 601 601 "Clicked the task which you want cron to run.\n" … … 606 606 §ããå Žåã¯ãããã©ãŠã¶ããã¯ãªãã¯ããŠãã ããã" 607 607 608 #: newtaskwizardguibase.cpp:164 6 taskpropertyguibase.cpp:409609 #: taskrawpropertyguibase.cpp:3 02608 #: newtaskwizardguibase.cpp:1645 taskpropertyguibase.cpp:431 609 #: taskrawpropertyguibase.cpp:313 610 610 msgid "&Browse..." 611 611 msgstr "ãã©ãŠãº(&B)..." 612 612 613 #: newtaskwizardguibase.cpp:164 7 taskpropertyguibase.cpp:410614 #: taskrawpropertyguibase.cpp:3 03613 #: newtaskwizardguibase.cpp:1646 taskpropertyguibase.cpp:432 614 #: taskrawpropertyguibase.cpp:314 615 615 msgid "Alt+B" 616 616 msgstr "Alt+B" 617 617 618 #: newtaskwizardguibase.cpp:164 8618 #: newtaskwizardguibase.cpp:1647 619 619 msgid "Welcome Use LIME Scheduled Task" 620 620 msgstr "LIMEã¿ã¹ã¯ã¹ã±ãžã¥ãŒã©ãžãããã" 621 621 622 #: newtaskwizardguibase.cpp:16 50622 #: newtaskwizardguibase.cpp:1649 623 623 msgid "Every week" 624 624 msgstr "æ¯é±" 625 625 626 #: newtaskwizardguibase.cpp:165 1626 #: newtaskwizardguibase.cpp:1650 627 627 msgid "Every month" 628 628 msgstr "æ¯æ" 629 629 630 #: newtaskwizardguibase.cpp:165 2630 #: newtaskwizardguibase.cpp:1651 631 631 msgid "One time only" 632 632 msgstr "1åã ã" 633 633 634 #: newtaskwizardguibase.cpp:165 3 newtaskwizardguibase.cpp:1663634 #: newtaskwizardguibase.cpp:1652 newtaskwizardguibase.cpp:1662 635 635 msgid "Every day" 636 636 msgstr "æ¯æ¥" 637 637 638 #: newtaskwizardguibase.cpp:165 4 newtaskwizardguibase.cpp:1661638 #: newtaskwizardguibase.cpp:1653 newtaskwizardguibase.cpp:1660 639 639 msgid "Perform this task:" 640 640 msgstr "ãã®ã¿ã¹ã¯ãå®è¡ãã:" 641 641 642 #: newtaskwizardguibase.cpp:165 5642 #: newtaskwizardguibase.cpp:1654 643 643 msgid "Please edit command for this task" 644 644 msgstr "ãã®ã¿ã¹ã¯ã®ã³ãã³ããç·šéããŠãã ãã" 645 645 646 #: newtaskwizardguibase.cpp:165 6646 #: newtaskwizardguibase.cpp:1655 647 647 msgid "Use system predefine schedule" 648 648 msgstr "ã·ã¹ãã æ¢å®ã®ã¹ã±ãžã¥ãŒã«ãå©çš" 649 649 650 #: newtaskwizardguibase.cpp:165 8650 #: newtaskwizardguibase.cpp:1657 651 651 msgid "Please Select Task Type" 652 652 msgstr "ã¿ã¹ã¯ã¿ã€ããéžæããŠãã ãã" 653 653 654 #: newtaskwizardguibase.cpp:165 9 newtaskwizardguibase.cpp:1668655 #: newtaskwizardguibase.cpp:167 9 newtaskwizardguibase.cpp:1708654 #: newtaskwizardguibase.cpp:1658 newtaskwizardguibase.cpp:1667 655 #: newtaskwizardguibase.cpp:1678 newtaskwizardguibase.cpp:1707 656 656 msgid "" 657 657 "Select the time and day you want this task to start.\n" … … 661 661 "éå§æé:" 662 662 663 #: newtaskwizardguibase.cpp:166 4663 #: newtaskwizardguibase.cpp:1663 664 664 msgid "Every workday" 665 665 msgstr "å¹³æ¥ããš" 666 666 667 #: newtaskwizardguibase.cpp:166 5 taskpropertyguibase.cpp:421667 #: newtaskwizardguibase.cpp:1664 taskpropertyguibase.cpp:443 668 668 msgid "Every" 669 669 msgstr "ããš" 670 670 671 #: newtaskwizardguibase.cpp:166 6671 #: newtaskwizardguibase.cpp:1665 672 672 msgid "days" 673 673 msgstr "æ¥" 674 674 675 #: newtaskwizardguibase.cpp:166 7675 #: newtaskwizardguibase.cpp:1666 676 676 msgid "Please Input Every Day Task Properties" 677 677 msgstr "æ¯æ¥å®è¡ã¿ã¹ã¯ã®ããããã£ãå 678 678 ¥åããŠãã ãã" 679 679 680 #: newtaskwizardguibase.cpp:16 70680 #: newtaskwizardguibase.cpp:1669 681 681 msgid "Please select the day(s) of the week:" 682 682 msgstr "é±ã®äžããæ¥ãéžæããŠãã ãã" 683 683 684 #: newtaskwizardguibase.cpp:167 1 weekdayselectguibase.cpp:104684 #: newtaskwizardguibase.cpp:1670 weekdayselectguibase.cpp:105 685 685 msgid "Sunday" 686 686 msgstr "æ¥ææ¥" 687 687 688 #: newtaskwizardguibase.cpp:167 2 weekdayselectguibase.cpp:103688 #: newtaskwizardguibase.cpp:1671 weekdayselectguibase.cpp:104 689 689 msgid "Saturday" 690 690 msgstr "åææ¥" 691 691 692 #: newtaskwizardguibase.cpp:167 3 weekdayselectguibase.cpp:102692 #: newtaskwizardguibase.cpp:1672 weekdayselectguibase.cpp:103 693 693 msgid "Friday" 694 694 msgstr "éææ¥" 695 695 696 #: newtaskwizardguibase.cpp:167 4 weekdayselectguibase.cpp:99696 #: newtaskwizardguibase.cpp:1673 weekdayselectguibase.cpp:100 697 697 msgid "Tuesday" 698 698 msgstr "ç«ææ¥"
