zh-cn.php 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. <?php
  2. /**
  3. * The execution module zh-cn file of ZenTaoMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package execution
  9. * @version $Id: zh-cn.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $
  10. * @link https://www.zentao.net
  11. */
  12. /* 字段列表。*/
  13. $lang->execution->allExecutions = '所有' . $lang->execution->common;
  14. $lang->execution->allExecutionAB = "{$lang->execution->common}列表";
  15. $lang->execution->id = $lang->executionCommon . '编号';
  16. $lang->execution->type = $lang->executionCommon . '类型';
  17. $lang->execution->name = $lang->executionCommon . '名称';
  18. $lang->execution->code = $lang->executionCommon . '代号';
  19. $lang->execution->projectName = '所属' . $lang->projectCommon;
  20. $lang->execution->project = '所属' . $lang->projectCommon;
  21. $lang->execution->execId = "{$lang->execution->common}编号";
  22. $lang->execution->execName = "{$lang->execution->common}名称";
  23. $lang->execution->execCode = "{$lang->execution->common}代号";
  24. $lang->execution->execType = "{$lang->execution->common}类型";
  25. $lang->execution->lifetime = $lang->projectCommon . '周期';
  26. $lang->execution->attribute = '阶段类型';
  27. $lang->execution->percent = '工作量占比';
  28. $lang->execution->milestone = '里程碑';
  29. $lang->execution->parent = '所属' . $lang->projectCommon;
  30. $lang->execution->path = '路径';
  31. $lang->execution->grade = '层级';
  32. $lang->execution->output = '输出';
  33. $lang->execution->version = '版本';
  34. $lang->execution->parentVersion = '父版本';
  35. $lang->execution->planDuration = '计划周期天数';
  36. $lang->execution->realDuration = '实际周期天数';
  37. $lang->execution->openedVersion = '创建版本';
  38. $lang->execution->lastEditedBy = '最后编辑人';
  39. $lang->execution->lastEditedDate = '最后编辑日期';
  40. $lang->execution->suspendedDate = '暂停日期';
  41. $lang->execution->vision = '界面';
  42. $lang->execution->displayCards = '每列最大卡片数';
  43. $lang->execution->fluidBoard = '列宽度';
  44. $lang->execution->stage = '阶段';
  45. $lang->execution->pri = '优先级';
  46. $lang->execution->openedBy = '由谁创建';
  47. $lang->execution->openedDate = '创建日期';
  48. $lang->execution->closedBy = '由谁关闭';
  49. $lang->execution->closedDate = '关闭日期';
  50. $lang->execution->canceledBy = '由谁取消';
  51. $lang->execution->canceledDate = '取消日期';
  52. $lang->execution->begin = '计划开始';
  53. $lang->execution->end = '计划完成';
  54. $lang->execution->dateRange = '计划起止日期';
  55. $lang->execution->realBeganAB = '实际开始';
  56. $lang->execution->realEndAB = '实际完成';
  57. $lang->execution->teamCount = '人数';
  58. $lang->execution->realBegan = '实际开始日期';
  59. $lang->execution->realEnd = '实际完成日期';
  60. $lang->execution->to = '至';
  61. $lang->execution->days = '可用工作日';
  62. $lang->execution->day = '天';
  63. $lang->execution->workHour = '工时';
  64. $lang->execution->workHourUnit = 'h';
  65. $lang->execution->totalHours = '可用工时';
  66. $lang->execution->totalDays = '可用工日';
  67. $lang->execution->status = $lang->executionCommon . '状态';
  68. $lang->execution->execStatus = "{$lang->execution->common}状态";
  69. $lang->execution->subStatus = '子状态';
  70. $lang->execution->desc = $lang->executionCommon . '描述';
  71. $lang->execution->execDesc = "{$lang->execution->common}描述";
  72. $lang->execution->owner = '负责人';
  73. $lang->execution->PO = $lang->productCommon . '负责人';
  74. $lang->execution->PM = $lang->executionCommon . '负责人';
  75. $lang->execution->execPM = "{$lang->execution->common}负责人";
  76. $lang->execution->QD = '测试负责人';
  77. $lang->execution->RD = '发布负责人';
  78. $lang->execution->release = '发布';
  79. $lang->execution->acl = '访问控制';
  80. $lang->execution->auth = '权限控制';
  81. $lang->execution->teamName = '团队名称';
  82. $lang->execution->teamSetting = '团队设置';
  83. $lang->execution->updateOrder = '排序';
  84. $lang->execution->order = $lang->executionCommon . '排序';
  85. $lang->execution->orderAB = '排序';
  86. $lang->execution->products = '相关' . $lang->productCommon;
  87. $lang->execution->whitelist = '白名单';
  88. $lang->execution->addWhitelist = '添加白名单';
  89. $lang->execution->unbindWhitelist = '移除白名单';
  90. $lang->execution->totalEstimate = '预计';
  91. $lang->execution->totalConsumed = '消耗';
  92. $lang->execution->totalLeft = '剩余';
  93. $lang->execution->progress = '进度';
  94. $lang->execution->hours = '预计 %s 消耗 %s 剩余 %s';
  95. $lang->execution->viewBug = '查看bug';
  96. $lang->execution->noProduct = "无{$lang->executionCommon}";
  97. $lang->execution->noStory = "暂时没有需求";
  98. $lang->execution->createStory = "提{$lang->SRCommon}";
  99. $lang->execution->storyTitle = "{$lang->SRCommon}名称";
  100. $lang->execution->storyView = "{$lang->SRCommon}详情";
  101. $lang->execution->all = '所有';
  102. $lang->execution->undone = '未完成';
  103. $lang->execution->unclosed = '未关闭';
  104. $lang->execution->closedExecution = '已关闭的执行';
  105. $lang->execution->typeDesc = "运维{$lang->executionCommon}没有{$lang->SRCommon}、bug、构建、测试功能。";
  106. $lang->execution->mine = '我负责:';
  107. $lang->execution->involved = '我参与';
  108. $lang->execution->other = '其他';
  109. $lang->execution->deleted = '已删除';
  110. $lang->execution->delayed = '已延期';
  111. $lang->execution->product = $lang->execution->products;
  112. $lang->execution->readjustTime = "调整{$lang->executionCommon}起止时间";
  113. $lang->execution->readjustTask = '顺延任务的起止时间';
  114. $lang->execution->effort = '工时';
  115. $lang->execution->storyEstimate = '需求估算';
  116. $lang->execution->newEstimate = '新一轮估算';
  117. $lang->execution->reestimate = '重新估算';
  118. $lang->execution->selectRound = '选择轮次';
  119. $lang->execution->average = '平均值';
  120. $lang->execution->relatedMember = '相关成员';
  121. $lang->execution->member = '成员';
  122. $lang->execution->watermark = '由禅道导出';
  123. $lang->execution->burnXUnit = '(日期)';
  124. $lang->execution->burnYUnit = '(工时)';
  125. $lang->execution->count = '(数量)';
  126. $lang->execution->waitTasks = '待处理';
  127. $lang->execution->viewByUser = '按用户查看';
  128. $lang->execution->oneProduct = "阶段只能关联一个{$lang->productCommon}";
  129. $lang->execution->noLinkProduct = "关联{$lang->productCommon}不能为空!";
  130. $lang->execution->recent = '近期访问:';
  131. $lang->execution->noTeam = '暂时没有团队成员';
  132. $lang->execution->or = '或';
  133. $lang->execution->selectProject = '请选择' . $lang->projectCommon;
  134. $lang->execution->unfoldClosed = '展开已结束';
  135. $lang->execution->editName = '编辑名称';
  136. $lang->execution->setWIP = '在制品数量设置(WIP)';
  137. $lang->execution->sortColumn = '看板列卡片排序';
  138. $lang->execution->batchCreateStory = "批量新建{$lang->SRCommon}";
  139. $lang->execution->batchCreateTask = '批量建任务';
  140. $lang->execution->kanbanNoLinkProduct = "看板没有关联{$lang->productCommon}";
  141. $lang->execution->myTask = "我的任务";
  142. $lang->execution->list = '列表';
  143. $lang->execution->allProject = '全部' . $lang->projectCommon;
  144. $lang->execution->method = '管理方法';
  145. $lang->execution->sameAsParent = "同父阶段";
  146. $lang->execution->selectStoryPlan = '选择计划';
  147. $lang->execution->parentStage = '所属父阶段';
  148. /* Fields of zt_team. */
  149. $lang->execution->root = '源ID';
  150. $lang->execution->estimate = '预计';
  151. $lang->execution->estimateHours = '预计工时';
  152. $lang->execution->consumed = '消耗';
  153. $lang->execution->consumedHours = '消耗工时';
  154. $lang->execution->left = '剩余';
  155. $lang->execution->leftHours = '预计剩余';
  156. $lang->execution->copyTeamTip = "可以选择复制{$lang->projectCommon}或{$lang->execution->common}团队的成员";
  157. $lang->execution->daysGreaterProject = '可用工日不能大于执行的可用工日『%s』';
  158. $lang->execution->errorHours = '可用工时/天不能大于『24』';
  159. $lang->execution->agileplusMethodTip = "融合{$lang->projectCommon}创建执行时,支持{$lang->executionCommon}和看板两种管理方法。";
  160. $lang->execution->typeTip = '“综合”类型的父阶段可以创建其它类型的子级,其它类型的父阶段只能创建同类型的子级';
  161. $lang->execution->waterfallTip = "瀑布{$lang->projectCommon}和融合瀑布{$lang->projectCommon}中,";
  162. $lang->execution->progressTip = '总进度 = 已消耗工时 / (已消耗工时 + 剩余工时)';
  163. $lang->execution->limitedTip = "受限用户只能编辑与自己相关的任务,不能新增任务。与自己相关的内容,包含指派给、已完成、已取消、已关闭、最后编辑,不包含抄送给的内容。 \n如果该用户之前不是受限用户,现在是受限用户,那么之前由他创建的任务还有相关的操作权限。";
  164. $lang->execution->stageFrozenTip = '阶段打基线后不允许%s';
  165. $lang->execution->createChildStage = '创建子阶段';
  166. $lang->execution->ganttDrag = '拖拽';
  167. $lang->execution->frozenTip = '阶段:%s 已冻结,将不会被编辑。';
  168. $lang->execution->start = "开始";
  169. $lang->execution->activate = "激活";
  170. $lang->execution->putoff = "延期";
  171. $lang->execution->suspend = "挂起";
  172. $lang->execution->close = "关闭";
  173. $lang->execution->export = "导出";
  174. $lang->execution->next = "下一步";
  175. $lang->execution->endList[7] = '一星期';
  176. $lang->execution->endList[14] = '两星期';
  177. $lang->execution->endList[31] = '一个月';
  178. $lang->execution->endList[62] = '两个月';
  179. $lang->execution->endList[93] = '三个月';
  180. $lang->execution->endList[186] = '半年';
  181. $lang->execution->endList[365] = '一年';
  182. $lang->execution->lifeTimeList['short'] = "短期";
  183. $lang->execution->lifeTimeList['long'] = "长期";
  184. $lang->execution->lifeTimeList['ops'] = "运维";
  185. $lang->execution->cfdTypeList['story'] = "按{$lang->SRCommon}查看";
  186. $lang->execution->cfdTypeList['task'] = "按任务查看";
  187. $lang->execution->cfdTypeList['bug'] = "按Bug查看";
  188. $lang->team->account = '用户';
  189. $lang->team->realname = '姓名';
  190. $lang->team->role = '角色';
  191. $lang->team->roleAB = '我的角色';
  192. $lang->team->join = '加盟日期';
  193. $lang->team->hours = '可用工时/天';
  194. $lang->team->days = '可用工日';
  195. $lang->team->totalHours = '总计';
  196. $lang->team->limited = '受限用户';
  197. $lang->team->limitedList['yes'] = '是';
  198. $lang->team->limitedList['no'] = '否';
  199. $lang->execution->basicInfo = '基本信息';
  200. $lang->execution->otherInfo = '其他信息';
  201. /* 字段取值列表。*/
  202. $lang->execution->statusList['wait'] = '未开始';
  203. $lang->execution->statusList['doing'] = '进行中';
  204. $lang->execution->statusList['suspended'] = '已挂起';
  205. $lang->execution->statusList['closed'] = '已关闭';
  206. $lang->execution->aclList['open'] = "继承{$lang->projectCommon}访问权限(能访问当前{$lang->projectCommon},即可访问)";
  207. $lang->execution->aclList['private'] = "私有(团队成员和{$lang->projectCommon}负责人、干系人可访问)";
  208. $lang->execution->kanbanAclList['open'] = "继承{$lang->projectCommon}";
  209. $lang->execution->kanbanAclList['private'] = '私有';
  210. $lang->execution->storyPoint = '故事点';
  211. $lang->execution->burnByList['left'] = '按剩余工时查看';
  212. $lang->execution->burnByList['estimate'] = "按计划工时查看";
  213. $lang->execution->burnByList['storyPoint'] = '按故事点查看';
  214. /* 方法列表。*/
  215. $lang->execution->index = "{$lang->execution->common}主页";
  216. $lang->execution->task = '任务列表';
  217. $lang->execution->groupTask = '分组浏览任务';
  218. $lang->execution->story = "{$lang->SRCommon}列表";
  219. $lang->execution->qa = '测试仪表盘';
  220. $lang->execution->bug = 'Bug列表';
  221. $lang->execution->testcase = '用例列表';
  222. $lang->execution->dynamic = '动态';
  223. $lang->execution->latestDynamic = '最新动态';
  224. $lang->execution->build = '构建列表';
  225. $lang->execution->testtask = '测试单';
  226. $lang->execution->burn = '燃尽图';
  227. $lang->execution->computeBurn = '更新燃尽图';
  228. $lang->execution->computeCFD = '更新累积流图';
  229. $lang->execution->fixFirst = '修改首天工时';
  230. $lang->execution->team = '团队成员';
  231. $lang->execution->doc = '文档列表';
  232. $lang->execution->doclib = '文档库';
  233. $lang->execution->manageProducts = '关联' . $lang->productCommon;
  234. $lang->execution->linkStory = "关联需求";
  235. $lang->execution->linkStoryByPlan = "按照计划关联";
  236. $lang->execution->linkPlan = "关联计划";
  237. $lang->execution->unlinkStoryTasks = "未关联{$lang->SRCommon}任务";
  238. $lang->execution->linkedProducts = '已关联';
  239. $lang->execution->unlinkedProducts = '未关联';
  240. $lang->execution->view = "{$lang->execution->common}概况";
  241. $lang->execution->startAction = "开始{$lang->execution->common}";
  242. $lang->execution->activateAction = "激活{$lang->execution->common}";
  243. $lang->execution->delayAction = "延期{$lang->execution->common}";
  244. $lang->execution->suspendAction = "挂起{$lang->execution->common}";
  245. $lang->execution->closeAction = "关闭{$lang->execution->common}";
  246. $lang->execution->testtaskAction = "{$lang->execution->common}测试单";
  247. $lang->execution->teamAction = "{$lang->execution->common}团队";
  248. $lang->execution->kanbanAction = "{$lang->execution->common}看板";
  249. $lang->execution->printKanbanAction = "打印看板";
  250. $lang->execution->treeAction = "{$lang->execution->common}树状图";
  251. $lang->execution->exportAction = "导出{$lang->execution->common}";
  252. $lang->execution->computeBurnAction = "计算燃尽图";
  253. $lang->execution->create = "添加{$lang->executionCommon}";
  254. $lang->execution->createExec = "添加{$lang->execution->common}";
  255. $lang->execution->createAction = "添加{$lang->execution->common}";
  256. $lang->execution->copyExec = "复制{$lang->execution->common}";
  257. $lang->execution->copy = "复制{$lang->executionCommon}";
  258. $lang->execution->delete = "删除{$lang->executionCommon}";
  259. $lang->execution->deleteAB = "删除{$lang->execution->common}";
  260. $lang->execution->browse = "浏览{$lang->execution->common}";
  261. $lang->execution->edit = "设置{$lang->executionCommon}";
  262. $lang->execution->editAction = "编辑{$lang->execution->common}";
  263. $lang->execution->batchEdit = "编辑";
  264. $lang->execution->batchEditAction = "批量编辑";
  265. $lang->execution->batchChangeStatus = "批量修改状态";
  266. $lang->execution->manageMembers = '团队管理';
  267. $lang->execution->manageTeamMember = '维护团队成员';
  268. $lang->execution->unlinkMember = '移除成员';
  269. $lang->execution->unlinkStory = "移除{$lang->SRCommon}";
  270. $lang->execution->unlinkStoryAB = "移除{$lang->SRCommon}";
  271. $lang->execution->batchUnlinkStory = "批量移除{$lang->SRCommon}";
  272. $lang->execution->importTask = '转入任务';
  273. $lang->execution->importPlanStories = "按计划关联{$lang->SRCommon}";
  274. $lang->execution->importBug = '导入Bug';
  275. $lang->execution->tree = '树状图';
  276. $lang->execution->treeTask = '只看任务';
  277. $lang->execution->treeStory = "仅需求";
  278. $lang->execution->treeViewTask = '树状图查看任务';
  279. $lang->execution->treeViewStory = "树状图查看{$lang->SRCommon}";
  280. $lang->execution->storyKanban = "{$lang->SRCommon}看板";
  281. $lang->execution->storySort = "{$lang->SRCommon}排序";
  282. $lang->execution->importPlanStory = "创建{$lang->executionCommon}成功!\n是否导入计划关联的相关%s?导入时只能导入激活状态的" . $lang->common->story . '。';
  283. $lang->execution->importEditPlanStory = "编辑{$lang->executionCommon}成功!\n是否导入计划关联的相关%s?导入时将自动过滤掉草稿状态的" . $lang->common->story . '。';
  284. $lang->execution->importBranchPlanStory = "创建{$lang->executionCommon}成功!\n是否导入计划关联的相关%s?导入时将只关联本" . $lang->executionCommon . '所关联分支的激活需求。';
  285. $lang->execution->importBranchEditPlanStory = "编辑{$lang->executionCommon}成功!\n是否导入计划关联的相关%s?导入时将只关联本" . $lang->executionCommon . '所关联分支的激活需求。';
  286. $lang->execution->needLinkProducts = "该执行还未关联任何{$lang->productCommon},相关功能无法使用,请先关联{$lang->productCommon}后再试。";
  287. $lang->execution->iteration = '版本迭代';
  288. $lang->execution->iterationInfo = '迭代%s次';
  289. $lang->execution->viewAll = '查看所有';
  290. $lang->execution->testreport = '测试报告';
  291. $lang->execution->taskKanban = '任务看板';
  292. $lang->execution->RDKanban = '研发看板';
  293. /* 分组浏览。*/
  294. $lang->execution->allTasks = '所有';
  295. $lang->execution->assignedToMe = '指派给我';
  296. $lang->execution->myInvolved = '由我参与';
  297. $lang->execution->assignedByMe = '由我指派';
  298. $lang->execution->statusSelects[''] = '更多';
  299. $lang->execution->statusSelects['wait'] = '未开始';
  300. $lang->execution->statusSelects['doing'] = '进行中';
  301. $lang->execution->statusSelects['undone'] = '未完成';
  302. $lang->execution->statusSelects['finishedbyme'] = '我完成';
  303. $lang->execution->statusSelects['done'] = '已完成';
  304. $lang->execution->statusSelects['closed'] = '已关闭';
  305. $lang->execution->statusSelects['cancel'] = '已取消';
  306. $lang->execution->statusSelects['delayed'] = '已延期';
  307. $lang->execution->groups[''] = '分组查看';
  308. $lang->execution->groups['story'] = "{$lang->SRCommon}分组";
  309. $lang->execution->groups['status'] = '状态分组';
  310. $lang->execution->groups['pri'] = '优先级分组';
  311. $lang->execution->groups['assignedTo'] = '指派给分组';
  312. $lang->execution->groups['finishedBy'] = '完成者分组';
  313. $lang->execution->groups['closedBy'] = '关闭者分组';
  314. $lang->execution->groups['type'] = '类型分组';
  315. $lang->execution->groupFilter['story']['all'] = '全部';
  316. $lang->execution->groupFilter['story']['linked'] = "已关联{$lang->SRCommon}的任务";
  317. $lang->execution->groupFilter['pri']['all'] = '全部';
  318. $lang->execution->groupFilter['pri']['noset'] = '未设置';
  319. $lang->execution->groupFilter['assignedTo']['undone'] = '未完成';
  320. $lang->execution->groupFilter['assignedTo']['all'] = '全部';
  321. $lang->execution->byQuery = '搜索';
  322. /* 查询条件列表。*/
  323. $lang->execution->allExecution = "所有{$lang->executionCommon}";
  324. $lang->execution->aboveAllProduct = "以上所有{$lang->productCommon}";
  325. $lang->execution->aboveAllExecution = "以上所有{$lang->executionCommon}";
  326. /* 页面提示。*/
  327. $lang->execution->linkStoryByPlanTips = "此操作会将所选计划下面的{$lang->SRCommon}全部关联到此{$lang->executionCommon}中";
  328. $lang->execution->batchCreateStoryTips = "请选择需要批量新建研发需求的{$lang->productCommon}";
  329. $lang->execution->selectExecution = "请选择{$lang->execution->common}";
  330. $lang->execution->beginAndEnd = '起止时间';
  331. $lang->execution->lblStats = '工时信息';
  332. $lang->execution->DurationStats = '工期信息';
  333. $lang->execution->stats = '可用工时 <strong>%s</strong> 工时,总共预计 <strong>%s</strong> 工时,已经消耗 <strong>%s</strong> 工时,预计剩余 <strong>%s</strong> 工时';
  334. $lang->execution->taskSummary = "本页共 <strong>%s</strong> 个任务,未开始 <strong>%s</strong>,进行中 <strong>%s</strong>,总预计 <strong>%s</strong> 工时,已消耗 <strong>%s</strong> 工时,剩余 <strong>%s</strong> 工时。";
  335. $lang->execution->pageSummary = "本页共 <strong>%total%</strong> 个任务,未开始 <strong>%wait%</strong>,进行中 <strong>%doing%</strong>,总预计 <strong>%estimate%</strong> 工时,已消耗 <strong>%consumed%</strong> 工时,剩余 <strong>%left%</strong> 工时。";
  336. $lang->execution->checkedSummary = "选中 <strong>%total%</strong> 个任务,未开始 <strong>%wait%</strong>,进行中 <strong>%doing%</strong>,总预计 <strong>%estimate%</strong> 工时,已消耗 <strong>%consumed%</strong> 工时,剩余 <strong>%left%</strong> 工时。";
  337. $lang->execution->executionSummary = "本页共 <strong>%s</strong> 个{$lang->executionCommon}。";
  338. $lang->execution->pageExecSummary = "本页共 <strong>%total%</strong> 个{$lang->executionCommon},未开始 <strong>%wait%</strong>,进行中 <strong>%doing%</strong>。";
  339. $lang->execution->checkedExecSummary = "选中 <strong>%total%</strong> 个{$lang->executionCommon},未开始 <strong>%wait%</strong>,进行中 <strong>%doing%</strong>。";
  340. $lang->execution->memberHoursAB = "<div>%s有 <strong>%s</strong> 工时</div>";
  341. $lang->execution->memberHours = '<div class="table-col"><div class="clearfix segments"><div class="segment"><div class="segment-title">%s可用工时</div><div class="segment-value">%s</div></div></div></div>';
  342. $lang->execution->countSummary = '<div class="table-col"><div class="clearfix segments"><div class="segment"><div class="segment-title">总任务</div><div class="segment-value">%s</div></div><div class="segment"><div class="segment-title">进行中</div><div class="segment-value"><span class="label label-dot primary"></span> %s</div></div><div class="segment"><div class="segment-title">未开始</div><div class="segment-value"><span class="label label-dot secondary"></span> %s</div></div></div></div>';
  343. $lang->execution->timeSummary = '<div class="table-col"><div class="clearfix segments"><div class="segment"><div class="segment-title">总预计</div><div class="segment-value">%s</div></div><div class="segment"><div class="segment-title">已消耗</div><div class="segment-value text-red">%s</div></div><div class="segment"><div class="segment-title">剩余</div><div class="segment-value">%s</div></div></div></div>';
  344. $lang->execution->groupSummaryAB = "<div>总任务 <strong>%s : </strong><span class='text-muted'>未开始</span> %s &nbsp; <span class='text-muted'>进行中</span> %s</div><div>总预计 <strong>%s : </strong><span class='text-muted'>已消耗</span> %s &nbsp; <span class='text-muted'>剩余</span> %s</div>";
  345. $lang->execution->wbs = "分解任务";
  346. $lang->execution->batchWBS = "批量分解";
  347. $lang->execution->howToUpdateBurn = "<a href='https://api.zentao.net/goto.php?item=burndown&lang=zh-cn' target='_blank' title='如何更新燃尽图?'>帮助 <i class='icon icon-help text-gray'></i></a>";
  348. $lang->execution->whyNoStories = "看起来没有需求可以关联。请检查下{$lang->executionCommon}关联的{$lang->productCommon}中有没有需求,而且要确保它们已经审核通过。";
  349. $lang->execution->projectNoStories = "看起来没有需求可以关联。请检查下{$lang->projectCommon}中有没有需求,而且要确保它们已经审核通过。";
  350. $lang->execution->productStories = "{$lang->executionCommon}关联的{$lang->SRCommon}是{$lang->productCommon}需求的子集,并且只有评审通过的{$lang->SRCommon}才能关联。请<a href='%s'>关联{$lang->SRCommon}</a>。";
  351. $lang->execution->haveBranchDraft = "导入完成!有%s条非激活状态或不是{$lang->executionCommon}关联分支的需求无法导入";
  352. $lang->execution->haveDraft = "导入完成!有%s条非激活状态的需求无法导入";
  353. $lang->execution->doneExecutions = '已结束';
  354. $lang->execution->selectDept = '选择部门';
  355. $lang->execution->selectDeptTitle = '选择一个部门的成员';
  356. $lang->execution->copyTeam = '复制团队';
  357. $lang->execution->copyFromTeam = "复制自{$lang->execution->common}团队: <strong>%s</strong>";
  358. $lang->execution->noMatched = "找不到包含'%s'的{$lang->execution->common}";
  359. $lang->execution->copyTitle = "请选择一个{$lang->execution->common}来复制";
  360. $lang->execution->copyNoExecution = "没有可用的{$lang->execution->common}来复制";
  361. $lang->execution->copyFromExecution = "复制自{$lang->execution->common} <strong>%s</strong>";
  362. $lang->execution->cancelCopy = '取消复制';
  363. $lang->execution->byPeriod = '按时间段';
  364. $lang->execution->byUser = '按用户';
  365. $lang->execution->noExecution = "暂时没有{$lang->executionCommon}。";
  366. $lang->execution->noExecutions = "暂时没有{$lang->execution->common}。";
  367. $lang->execution->noPrintData = "暂无数据可打印";
  368. $lang->execution->noMembers = '暂时没有团队成员。';
  369. $lang->execution->workloadTotal = "工作量占比累计不应当超过100%s, 当前{$lang->productCommon}下的工作量之和为%s";
  370. $lang->execution->linkAllStoryTip = "({$lang->projectCommon}下还未关联{$lang->SRCommon},可直接关联该{$lang->execution->common}所关联{$lang->productCommon}的{$lang->SRCommon})";
  371. $lang->execution->copyTeamTitle = "选择一个{$lang->project->common}或{$lang->execution->common}团队";
  372. /* 交互提示。*/
  373. $lang->execution->confirmDelete = "您确定删除{$lang->executionCommon}[%s]吗?";
  374. $lang->execution->confirmUnlinkMember = "您确定从该{$lang->executionCommon}中移除该用户吗?";
  375. $lang->execution->confirmUnlinkStory = "移除该需求后,该需求关联的用例将被移除,该需求关联的任务将被取消,请确认。";
  376. $lang->execution->confirmBatchUnlinkStory = "移除需求后,需求关联的用例将被移除,需求关联的任务将被取消。";
  377. $lang->execution->confirmSync = "修改所属{$lang->projectCommon}后,为了保持数据的一致性,该执行所关联的{$lang->productCommon}、{$lang->SRCommon}、团队和白名单数据将会同步到新的{$lang->projectCommon}中,请知悉。";
  378. $lang->execution->confirmUnlinkExecutionStory = "您确定从该{$lang->projectCommon}中移除该需求吗?";
  379. $lang->execution->notAllowedUnlinkStory = "该{$lang->SRCommon}已经与{$lang->projectCommon}下{$lang->executionCommon}相关联,请从{$lang->executionCommon}中移除后再操作。";
  380. $lang->execution->notAllowRemoveProducts = "该{$lang->productCommon}中的{$lang->SRCommon}%s已与该{$lang->executionCommon}进行了关联,请取消关联后再操作。";
  381. $lang->execution->errorNoLinkedProducts = "该{$lang->executionCommon}没有关联的{$lang->productCommon},系统将转到{$lang->productCommon}关联页面";
  382. $lang->execution->errorSameProducts = "{$lang->executionCommon}不能关联多个相同的{$lang->productCommon}。";
  383. $lang->execution->errorSameBranches = "{$lang->executionCommon}不能关联多个相同的分支。";
  384. $lang->execution->errorBegin = "{$lang->executionCommon}的开始时间不能小于所属{$lang->projectCommon}的开始时间%s。";
  385. $lang->execution->errorEnd = "{$lang->executionCommon}的截止时间不能大于所属{$lang->projectCommon}的结束时间%s。";
  386. $lang->execution->errorLesserProject = "{$lang->executionCommon}的计划开始时间不能小于所属{$lang->projectCommon}的计划开始时间%s。";
  387. $lang->execution->errorGreaterProject = "{$lang->executionCommon}的计划完成时间不能大于所属{$lang->projectCommon}的计划完成时间%s。";
  388. $lang->execution->errorCommonBegin = $lang->executionCommon . "开始日期应大于等于{$lang->projectCommon}的开始日期:%s。";
  389. $lang->execution->errorCommonEnd = $lang->executionCommon . "截止日期应小于等于{$lang->projectCommon}的截止日期:%s。";
  390. $lang->execution->errorLesserParent = '计划开始时间不能小于所属父阶段的计划开始时间:%s。';
  391. $lang->execution->errorGreaterParent = '计划完成时间不能大于所属父阶段的计划完成时间:%s。';
  392. $lang->execution->errorNameRepeat = "相同父阶段的子%s名称不能相同";
  393. $lang->execution->errorAttrMatch = "父阶段类型为[%s],阶段类型需与父阶段一致";
  394. $lang->execution->errorLesserPlan = "『%s』应当不小于计划开始时间『%s』。";
  395. $lang->execution->errorParentExecution = '当前阶段是父阶段,不允许访问。';
  396. $lang->execution->errorFloat = '『%s』应当是不小于0的数字,可以是小数。';
  397. $lang->execution->accessDenied = "您无权访问该{$lang->executionCommon}!";
  398. $lang->execution->tips = '提示';
  399. $lang->execution->afterInfo = "%s添加成功,您现在可以进行以下操作:";
  400. $lang->execution->setTeam = '设置团队';
  401. $lang->execution->createTask = '创建任务';
  402. $lang->execution->goback = "返回任务列表";
  403. $lang->execution->gobackExecution = "返回{$lang->execution->common}列表";
  404. $lang->execution->noweekend = '去除周末';
  405. $lang->execution->nodelay = '去除延期日期';
  406. $lang->execution->withweekend = '显示周末';
  407. $lang->execution->withdelay = '显示延期日期';
  408. $lang->execution->unitTemplate = '(单位:%s)';
  409. $lang->execution->interval = '间隔';
  410. $lang->execution->fixFirstWithLeft = '修改剩余工时';
  411. $lang->execution->unfinishedExecution = "该{$lang->executionCommon}下还有";
  412. $lang->execution->unfinishedTask = "[%s]个未完成的任务,";
  413. $lang->execution->unresolvedBug = "[%s]个未解决的bug,";
  414. $lang->execution->projectNotEmpty = "所属{$lang->projectCommon}不能为空。";
  415. $lang->execution->confirmStoryToTask = '%s' . $lang->SRCommon . '已经在当前' . $lang->execution->common . '中转了任务,请确认是否重复转任务。';
  416. $lang->execution->ge = "『%s』应当不小于实际开始时间『%s』。";
  417. $lang->execution->storyDragError = "该{$lang->SRCommon}不是激活状态,请激活后再拖动";
  418. $lang->execution->countTip = '(%s人)';
  419. $lang->execution->pleaseInput = "请输入";
  420. $lang->execution->week = '周';
  421. $lang->execution->checkedExecutions = "共选中%s个{$lang->executionCommon}。";
  422. $lang->execution->hasStartedTaskOrSubStage = "%s%s下的任务或子阶段已经开始,无法修改,已过滤。";
  423. $lang->execution->hasSuspendedOrClosedChildren = "阶段%s下的子阶段未全部挂起或关闭,无法修改,已过滤。";
  424. $lang->execution->hasNotClosedChildren = "阶段%s下的子阶段未全部关闭,无法修改,已过滤。";
  425. $lang->execution->hasStartedTask = "%s%s下的任务已经开始,无法修改,已过滤。";
  426. $lang->execution->cannotManageProducts = "当前{$lang->execution->common}的{$lang->project->common}为%s{$lang->project->common},不能关联{$lang->productCommon}。";
  427. $lang->execution->confirmCloseExecution = "该{$lang->executionCommon}下还有未关闭的任务:%s,您确定要关闭{$lang->executionCommon}吗?";
  428. $lang->execution->confirmBatchCloseExecution = "%s中还有未关闭的任务,您确定要关闭{$lang->executionCommon}吗?";
  429. /* 统计。*/
  430. $lang->execution->charts = new stdclass();
  431. $lang->execution->charts->burn = new stdclass();
  432. $lang->execution->charts->burn->graph = new stdclass();
  433. $lang->execution->charts->burn->graph->caption = "燃尽图";
  434. $lang->execution->charts->burn->graph->xAxisName = "日期";
  435. $lang->execution->charts->burn->graph->yAxisName = "HOUR";
  436. $lang->execution->charts->burn->graph->baseFontSize = 12;
  437. $lang->execution->charts->burn->graph->formatNumber = 0;
  438. $lang->execution->charts->burn->graph->animation = 0;
  439. $lang->execution->charts->burn->graph->rotateNames = 1;
  440. $lang->execution->charts->burn->graph->showValues = 0;
  441. $lang->execution->charts->burn->graph->reference = '参考';
  442. $lang->execution->charts->burn->graph->actuality = '实际';
  443. $lang->execution->charts->burn->graph->delay = '延期';
  444. $lang->execution->charts->cfd = new stdclass();
  445. $lang->execution->charts->cfd->cfdTip = "<p>
  446. 1.累积流图反应各个阶段累积处理的工作项数量随时间的变化趋势。</br>
  447. 2.横轴代表日期,纵轴代表工作项数量。</br>
  448. 3.通过此图可计算出在制品数量,交付速率以及平均前置时间,从而了解团队的交付情况。</p>";
  449. $lang->execution->charts->cfd->cycleTime = '平均周期时间';
  450. $lang->execution->charts->cfd->cycleTimeTip = '平均每个卡片从开发启动到完成的周期时间';
  451. $lang->execution->charts->cfd->throughput = '吞吐率';
  452. $lang->execution->charts->cfd->throughputTip = '吞吐率 = 在制品 / 平均周期时间';
  453. $lang->execution->charts->cfd->begin = '开始日期';
  454. $lang->execution->charts->cfd->end = '结束日期';
  455. $lang->execution->charts->cfd->errorBegin = '开始日期应小于结束日期';
  456. $lang->execution->charts->cfd->errorDateRange = '累积流图只提供3个月内的数据展示';
  457. $lang->execution->charts->cfd->dateRangeTip = '累积流图只展示3个月内的数据';
  458. $lang->execution->placeholder = new stdclass();
  459. $lang->execution->placeholder->code = '团队内部的简称';
  460. $lang->execution->placeholder->totalLeft = "{$lang->executionCommon}开始时的总预计工时";
  461. $lang->execution->selectGroup = new stdclass();
  462. $lang->execution->selectGroup->done = '(已结束)';
  463. $lang->execution->orderList['order_asc'] = "{$lang->SRCommon}排序正序";
  464. $lang->execution->orderList['order_desc'] = "{$lang->SRCommon}排序倒序";
  465. $lang->execution->orderList['pri_asc'] = "{$lang->SRCommon}优先级正序";
  466. $lang->execution->orderList['pri_desc'] = "{$lang->SRCommon}优先级倒序";
  467. $lang->execution->orderList['stage_asc'] = "{$lang->SRCommon}阶段正序";
  468. $lang->execution->orderList['stage_desc'] = "{$lang->SRCommon}阶段倒序";
  469. $lang->execution->kanban = "看板";
  470. $lang->execution->kanbanSetting = "看板设置";
  471. $lang->execution->setKanban = "设置看板";
  472. $lang->execution->resetKanban = "恢复默认";
  473. $lang->execution->printKanban = "打印看板";
  474. $lang->execution->fullScreen = "看板全屏展示";
  475. $lang->execution->bugList = "Bug列表";
  476. $lang->execution->kanbanHideCols = '看板隐藏已关闭、已取消列';
  477. $lang->execution->kanbanShowOption = '显示折叠信息';
  478. $lang->execution->kanbanColsColor = '看板列自定义颜色';
  479. $lang->execution->kanbanCardsUnit = '个';
  480. $lang->execution->kanbanViewList['all'] = '综合看板';
  481. $lang->execution->kanbanViewList['story'] = "{$lang->SRCommon}看板";
  482. $lang->execution->kanbanViewList['bug'] = 'Bug看板';
  483. $lang->execution->kanbanViewList['task'] = '任务看板';
  484. $lang->execution->teamWords = '团队';
  485. $lang->kanbanSetting = new stdclass();
  486. $lang->kanbanSetting->noticeReset = '是否恢复看板默认设置?';
  487. $lang->kanbanSetting->optionList['0'] = '隐藏';
  488. $lang->kanbanSetting->optionList['1'] = '显示';
  489. $lang->printKanban = new stdclass();
  490. $lang->printKanban->common = '打印看板';
  491. $lang->printKanban->content = '内容';
  492. $lang->printKanban->print = '打印';
  493. $lang->printKanban->taskStatus = '状态';
  494. $lang->printKanban->typeList['all'] = '全部';
  495. $lang->printKanban->typeList['increment'] = '增量';
  496. $lang->execution->typeList[''] = '';
  497. $lang->execution->typeList['stage'] = '阶段';
  498. $lang->execution->typeList['sprint'] = '迭代';
  499. $lang->execution->typeList['kanban'] = '看板';
  500. $lang->execution->featureBar['tree']['all'] = '全部';
  501. $lang->execution->featureBar['task']['all'] = '全部';
  502. $lang->execution->featureBar['task']['unclosed'] = $lang->execution->unclosed;
  503. $lang->execution->featureBar['task']['assignedtome'] = $lang->execution->assignedToMe;
  504. $lang->execution->featureBar['task']['myinvolved'] = $lang->execution->myInvolved;
  505. $lang->execution->featureBar['task']['assignedbyme'] = $lang->execution->assignedByMe;
  506. $lang->execution->featureBar['task']['needconfirm'] = "{$lang->SRCommon}变更";
  507. $lang->execution->featureBar['task']['status'] = $lang->more;
  508. $lang->execution->moreSelects['task']['status']['wait'] = '未开始';
  509. $lang->execution->moreSelects['task']['status']['doing'] = '进行中';
  510. $lang->execution->moreSelects['task']['status']['undone'] = '未完成';
  511. $lang->execution->moreSelects['task']['status']['finishedbyme'] = '我完成';
  512. $lang->execution->moreSelects['task']['status']['done'] = '已完成';
  513. $lang->execution->moreSelects['task']['status']['closed'] = '已关闭';
  514. $lang->execution->moreSelects['task']['status']['cancel'] = '已取消';
  515. $lang->execution->moreSelects['task']['status']['delayed'] = '已延期';
  516. $lang->execution->featureBar['all']['all'] = '全部';
  517. $lang->execution->featureBar['all']['undone'] = $lang->execution->undone;
  518. $lang->execution->featureBar['all']['wait'] = $lang->execution->statusList['wait'];
  519. $lang->execution->featureBar['all']['doing'] = $lang->execution->statusList['doing'];
  520. $lang->execution->featureBar['all']['suspended'] = $lang->execution->statusList['suspended'];
  521. $lang->execution->featureBar['all']['delayed'] = $lang->execution->delayed;
  522. $lang->execution->featureBar['all']['closed'] = $lang->execution->statusList['closed'];
  523. $lang->execution->featureBar['bug']['all'] = '全部';
  524. $lang->execution->featureBar['bug']['unresolved'] = '未解决';
  525. $lang->execution->featureBar['build']['all'] = '全部构建';
  526. $lang->execution->featureBar['story']['all'] = '全部';
  527. $lang->execution->featureBar['story']['unclosed'] = '未关闭';
  528. $lang->execution->featureBar['story']['draft'] = '草稿';
  529. $lang->execution->featureBar['story']['reviewing'] = '评审中';
  530. $lang->execution->featureBar['testcase']['all'] = '全部';
  531. $lang->execution->featureBar['testcase']['wait'] = '待评审';
  532. $lang->execution->featureBar['testcase'][] = '-';
  533. $lang->execution->featureBar['testcase']['needconfirm'] = "{$lang->common->story}变动";
  534. $lang->execution->featureBar['importtask']['all'] = $lang->execution->importTask;
  535. $lang->execution->featureBar['importbug']['all'] = $lang->execution->importBug;
  536. $lang->execution->myExecutions = '我参与的';
  537. $lang->execution->doingProject = "进行中的{$lang->projectCommon}";
  538. $lang->execution->kanbanColType['wait'] = $lang->execution->statusList['wait'] . '的' . $lang->execution->common;
  539. $lang->execution->kanbanColType['doing'] = $lang->execution->statusList['doing'] . '的' . $lang->execution->common;
  540. $lang->execution->kanbanColType['suspended'] = $lang->execution->statusList['suspended'] . '的' . $lang->execution->common;
  541. $lang->execution->kanbanColType['closed'] = $lang->execution->statusList['closed'] . '的' . $lang->execution->common . '(最近2期)';
  542. $lang->execution->treeLevel = array();
  543. $lang->execution->treeLevel['all'] = '全部展开';
  544. $lang->execution->treeLevel['root'] = '全部折叠';
  545. $lang->execution->treeLevel['task'] = '全部显示';
  546. $lang->execution->treeLevel['story'] = "仅需求";
  547. $lang->execution->action = new stdclass();
  548. $lang->execution->action->opened = '$date, 由 <strong>$actor</strong> 创建。$extra' . "\n";
  549. $lang->execution->action->managed = '$date, 由 <strong>$actor</strong> 维护。$extra' . "\n";
  550. $lang->execution->action->edited = '$date, 由 <strong>$actor</strong> 编辑。$extra' . "\n";
  551. $lang->execution->action->extra = "相关{$lang->productCommon}为 %s。";
  552. $lang->execution->action->startbychildactivate = '$date, 系统判断由于子阶段激活,将' . $lang->executionCommon . '状态置为进行中。' . "\n";
  553. $lang->execution->action->waitbychilddelete = '$date, 系统判断由于子阶段删除,将' . $lang->executionCommon . '状态置为未开始。' . "\n";
  554. $lang->execution->action->closebychilddelete = '$date, 系统判断由于子阶段删除,将' . $lang->executionCommon . '状态置为已关闭。' . "\n";
  555. $lang->execution->action->closebychildclose = '$date, 系统判断由于子阶段关闭,将' . $lang->executionCommon . '状态置为已关闭。' . "\n";
  556. $lang->execution->action->waitbychild = '$date, 系统判断由于子阶段 <strong>全部为未开始</strong> ,将阶段状态置为 <strong>未开始</strong> 。';
  557. $lang->execution->action->suspendedbychild = '$date, 系统判断由于子阶段 <strong>全部挂起</strong> ,将阶段状态置为 <strong>已挂起</strong> 。';
  558. $lang->execution->action->closedbychild = '$date, 系统判断由于子阶段 <strong>全部关闭</strong> ,将阶段状态置为 <strong>已关闭</strong> 。';
  559. $lang->execution->action->startbychildstart = '$date, 系统判断由于子阶段 <strong>开始</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  560. $lang->execution->action->startbychildactivate = '$date, 系统判断由于子阶段 <strong>激活</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  561. $lang->execution->action->startbychildsuspend = '$date, 系统判断由于子阶段 <strong>挂起</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  562. $lang->execution->action->startbychildclose = '$date, 系统判断由于子阶段 <strong>关闭</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  563. $lang->execution->action->startbychildcreate = '$date, 系统判断由于 <strong>创建</strong> 子阶段 ,将阶段状态置为 <strong>进行中</strong> 。';
  564. $lang->execution->action->startbychildedit = '$date, 系统判断由于子阶段 <strong>状态修改</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  565. $lang->execution->action->startbychild = '$date, 系统判断由于子阶段 <strong>激活</strong> ,将阶段状态置为 <strong>进行中</strong> 。';
  566. $lang->execution->action->waitbychild = '$date, 系统判断由于子阶段 <strong>状态修改</strong> ,将阶段状态置为 <strong>未开始</strong> 。';
  567. $lang->execution->action->suspendbychild = '$date, 系统判断由于子阶段 <strong>状态修改</strong> ,将阶段状态置为 <strong>已挂起</strong> 。';
  568. $lang->execution->action->closebychild = '$date, 系统判断由于子阶段 <strong>状态修改</strong> ,将阶段状态置为 <strong>已关闭</strong> 。';
  569. $lang->execution->startbychildactivate = '激活了';
  570. $lang->execution->waitbychilddelete = '停止了';
  571. $lang->execution->closebychilddelete = '关闭了';
  572. $lang->execution->closebychildclose = '关闭了';
  573. $lang->execution->waitbychild = '激活了';
  574. $lang->execution->suspendedbychild = '挂起了';
  575. $lang->execution->closedbychild = '关闭了';
  576. $lang->execution->startbychildstart = '开始了';
  577. $lang->execution->startbychildactivate = '激活了';
  578. $lang->execution->startbychildsuspend = '激活了';
  579. $lang->execution->startbychildclose = '激活了';
  580. $lang->execution->startbychildcreate = '激活了';
  581. $lang->execution->startbychildedit = '激活了';
  582. $lang->execution->startbychild = '激活了';
  583. $lang->execution->waitbychild = '停止了';
  584. $lang->execution->suspendbychild = '挂起了';
  585. $lang->execution->closebychild = '关闭了';
  586. $lang->execution->statusColorList = array();
  587. $lang->execution->statusColorList['wait'] = '#0991FF';
  588. $lang->execution->statusColorList['doing'] = '#0BD986';
  589. $lang->execution->statusColorList['suspended'] = '#fdc137';
  590. $lang->execution->statusColorList['closed'] = '#838A9D';
  591. if(!isset($lang->execution->gantt)) $lang->execution->gantt = new stdclass();
  592. $lang->execution->gantt->progressColor[0] = '#B7B7B7';
  593. $lang->execution->gantt->progressColor[1] = '#FF8287';
  594. $lang->execution->gantt->progressColor[2] = '#FFC73A';
  595. $lang->execution->gantt->progressColor[3] = '#6BD5F5';
  596. $lang->execution->gantt->progressColor[4] = '#9DE88A';
  597. $lang->execution->gantt->progressColor[5] = '#9BA8FF';
  598. $lang->execution->gantt->color[0] = '#E7E7E7';
  599. $lang->execution->gantt->color[1] = '#FFDADB';
  600. $lang->execution->gantt->color[2] = '#FCECC1';
  601. $lang->execution->gantt->color[3] = '#D3F3FD';
  602. $lang->execution->gantt->color[4] = '#DFF5D9';
  603. $lang->execution->gantt->color[5] = '#EBDCF9';
  604. $lang->execution->gantt->textColor[0] = '#2D2D2D';
  605. $lang->execution->gantt->textColor[1] = '#8D0308';
  606. $lang->execution->gantt->textColor[2] = '#9D4200';
  607. $lang->execution->gantt->textColor[3] = '#006D8E';
  608. $lang->execution->gantt->textColor[4] = '#1A8100';
  609. $lang->execution->gantt->textColor[5] = '#660ABC';
  610. $lang->execution->gantt->stage = new stdclass();
  611. $lang->execution->gantt->stage->progressColor = '#70B8FE';
  612. $lang->execution->gantt->stage->color = '#D2E7FC';
  613. $lang->execution->gantt->stage->textColor = '#0050A7';
  614. $lang->execution->gantt->defaultColor = '#EBDCF9';
  615. $lang->execution->gantt->defaultProgressColor = '#9BA8FF';
  616. $lang->execution->gantt->defaultTextColor = '#660ABC';
  617. $lang->execution->gantt->bar_height = '24';
  618. $lang->execution->gantt->exportImg = '导出图片';
  619. $lang->execution->gantt->exportPDF = '导出 PDF';
  620. $lang->execution->gantt->exporting = '正在导出……';
  621. $lang->execution->gantt->exportFail = '导出失败。';
  622. $lang->execution->boardColorList = array('#32C5FF', '#006AF1', '#9D28B2', '#FF8F26', '#7FBB00', '#424BAC', '#66c5f8', '#EC2761');
  623. $lang->execution->linkBranchStoryByPlanTips = "{$lang->execution->common}按计划关联需求时,只导入本{$lang->execution->common}所关联%s的激活状态的需求。";
  624. $lang->execution->linkNormalStoryByPlanTips = "{$lang->execution->common}按计划关联需求时,只导入激活状态的需求。";
  625. $lang->execution->featureBar['dynamic']['all'] = '全部';
  626. $lang->execution->featureBar['dynamic']['today'] = '今天';
  627. $lang->execution->featureBar['dynamic']['yesterday'] = '昨天';
  628. $lang->execution->featureBar['dynamic']['thisWeek'] = '本周';
  629. $lang->execution->featureBar['dynamic']['lastWeek'] = '上周';
  630. $lang->execution->featureBar['dynamic']['thisMonth'] = '本月';
  631. $lang->execution->featureBar['dynamic']['lastMonth'] = '上月';
  632. $lang->execution->featureBar['team']['all'] = '团队成员';
  633. $lang->execution->featureBar['managemembers']['all'] = '团队管理';