summaryrefslogtreecommitdiff
path: root/app/views/notify/project_was_moved_email.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notify/project_was_moved_email.html.haml')
-rw-r--r--app/views/notify/project_was_moved_email.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/notify/project_was_moved_email.html.haml b/app/views/notify/project_was_moved_email.html.haml
index 87b3ff7f0b3..bda3b6a1fa5 100644
--- a/app/views/notify/project_was_moved_email.html.haml
+++ b/app/views/notify/project_was_moved_email.html.haml
@@ -1,15 +1,15 @@
%p
- Project #{@old_path_with_namespace} was moved to another location
+ 项目 #{@old_path_with_namespace} 被转移到另一个地址
%p
- The project is now located under
+ 项目现在定位到
= link_to namespace_project_url(@project.namespace, @project) do
= @project.name_with_namespace
%p
- To update the remote url in your local repository run (for ssh):
+ 要更新本地仓库的远程地址请运行 (ssh):
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
git remote set-url origin #{@project.ssh_url_to_repo}
%p
- or for http(s):
+ 或 http(s):
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
git remote set-url origin #{@project.http_url_to_repo}
%br