@@ -431,8 +431,8 @@ function List(props){
(!has_created_issues ?

-
欢迎使用疑修(Issue)
-
疑修用于记录与跟踪待办事项、项目bug、功能需求等。在使用之前,请您先{props.history.push(`/${owner}/${projectsId}/issues/new`)}} className="color-blue">创建一个疑修
+
欢迎使用任务
+
任务用于记录与跟踪待办事项、项目bug、功能需求等。在使用之前,请您先{props.history.push(`/${owner}/${projectsId}/issues/new`)}} className="color-blue">创建一个任务
:
diff --git a/src/forge/Issues/Pages/new.jsx b/src/forge/Issues/Pages/new.jsx
index 3372429de..69e0cfe6f 100644
--- a/src/forge/Issues/Pages/new.jsx
+++ b/src/forge/Issues/Pages/new.jsx
@@ -55,7 +55,7 @@ function New(props){
return;
}
const { author, name} = projectDetail;
- document.title = `新建疑修-${author.name}/${name}`
+ document.title = `新建任务-${author.name}/${name}`
}
},[projectDetail, feedBack])
@@ -199,7 +199,7 @@ function New(props){
}).then(result=>{
if(result && result.data && result.data.project_issues_index){
window.scrollTo(0,0);
- props.showNotification("疑修创建成功!");
+ props.showNotification("任务创建成功!");
props.history.push(`/${owner}/${projectsId}/issues/${result.data.project_issues_index}`);
showNpsModal("createIssue", 1);
}
@@ -241,7 +241,7 @@ function New(props){
}
return(
-
新建疑修
+
新建任务
{/* 意见反馈初始化内容 */}
diff --git a/src/forge/Issues/Pages/sign.jsx b/src/forge/Issues/Pages/sign.jsx
index bb475b7fd..b47c1d0d4 100644
--- a/src/forge/Issues/Pages/sign.jsx
+++ b/src/forge/Issues/Pages/sign.jsx
@@ -88,10 +88,10 @@ function Sign(props){
按创建时间升序排序
- 按疑修数量降序排序
+ 按任务数量降序排序
- 按疑修数量升序排序
+ 按任务数量升序排序
{/*
按合并请求数量降序排序
@@ -206,7 +206,7 @@ function Sign(props){
content={}
/>
-
疑修 / 项目标记
+
任务 / 项目标记
创建标记
{
@@ -247,7 +247,7 @@ function Sign(props){
{i.description}
- toIssues(i) } >{i.issues_count || 0} 疑修
+ toIssues(i) } >{i.issues_count || 0} 任务
{/* {i.pull_requests_count || 0} 合并请求 */}
diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx
index 752302868..9c74809a9 100644
--- a/src/forge/Main/CoderDepot.jsx
+++ b/src/forge/Main/CoderDepot.jsx
@@ -549,7 +549,7 @@ function CoderDepot(props){
}*/}
{
issuesFlag &&
- + 疑修
+ + 任务
}
diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js
index bd48d27e1..662eeff29 100644
--- a/src/forge/Main/Detail.js
+++ b/src/forge/Main/Detail.js
@@ -615,7 +615,7 @@ class Detail extends Component {
const { projectsId , owner } = this.props.match.params;
const { projectName } = this.state;
this.props.confirm({
- content:
该操作无法撤销!且将会一并删除相关的疑修、合并请求、工作流、里程碑、动态等数据。
是否确认删除 {owner}/{projectName}({projectsId})?,
+ content:
该操作无法撤销!且将会一并删除相关的任务、合并请求、工作流、里程碑、动态等数据。
是否确认删除 {owner}/{projectName}({projectsId})?,
onOk: () => {
const url = `/${owner}/${projectsId}.json`;
axios.delete(url).then((result) => {
diff --git a/src/forge/Main/sub/DetailBanner.jsx b/src/forge/Main/sub/DetailBanner.jsx
index bbf761ce6..67ba75230 100644
--- a/src/forge/Main/sub/DetailBanner.jsx
+++ b/src/forge/Main/sub/DetailBanner.jsx
@@ -77,7 +77,7 @@ function DetailBanner({ history,list , owner , projectsId ,showNotification , ur
- 疑修(Issue)
+ 任务
{projectDetail && projectDetail.issues_count ?
{numFormat(projectDetail.issues_count)} : ""}
@@ -140,7 +140,7 @@ function DetailBanner({ history,list , owner , projectsId ,showNotification , ur
- 维基(Wiki)
+ 文档
}
diff --git a/src/forge/Merge/merge.js b/src/forge/Merge/merge.js
index d8d83e155..f532d8178 100644
--- a/src/forge/Merge/merge.js
+++ b/src/forge/Merge/merge.js
@@ -321,7 +321,7 @@ class merge extends Component {