Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-04-30 22:33:02 +0300
committerDouwe Maan <douwe@gitlab.com>2015-04-30 22:33:02 +0300
commitae09c2a6db0d15caedc080c319add147c79fd02a (patch)
tree528b2a2b4de8a2261c1cbdb84842659fdeb467c7
parente0a1d54e1a3f127c74a71cc09b14e884880d7d7c (diff)
Capitalize "X" in "New X".
-rw-r--r--app/views/admin/applications/new.html.haml2
-rw-r--r--app/views/admin/groups/new.html.haml2
-rw-r--r--app/views/admin/users/new.html.haml2
-rw-r--r--app/views/projects/blob/new.html.haml2
-rw-r--r--app/views/projects/branches/new.html.haml2
-rw-r--r--app/views/projects/issues/new.html.haml2
-rw-r--r--app/views/projects/labels/new.html.haml2
-rw-r--r--app/views/projects/merge_requests/new.html.haml2
-rw-r--r--app/views/projects/milestones/new.html.haml2
-rw-r--r--app/views/projects/snippets/new.html.haml2
-rw-r--r--app/views/projects/tags/new.html.haml2
-rw-r--r--app/views/snippets/new.html.haml2
12 files changed, 12 insertions, 12 deletions
diff --git a/app/views/admin/applications/new.html.haml b/app/views/admin/applications/new.html.haml
index 2884ee93d52..6310d89bd6b 100644
--- a/app/views/admin/applications/new.html.haml
+++ b/app/views/admin/applications/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New application"
+- page_title "New Application"
%h3.page-title New application
- @url = admin_applications_path
= render 'form', application: @application
diff --git a/app/views/admin/groups/new.html.haml b/app/views/admin/groups/new.html.haml
index 9dccda1f76e..c81ee552ac3 100644
--- a/app/views/admin/groups/new.html.haml
+++ b/app/views/admin/groups/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New group"
+- page_title "New Group"
%h3.page-title New group
%hr
= render 'form'
diff --git a/app/views/admin/users/new.html.haml b/app/views/admin/users/new.html.haml
index cabce1f516f..bfc36ed7373 100644
--- a/app/views/admin/users/new.html.haml
+++ b/app/views/admin/users/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New user"
+- page_title "New User"
%h3.page-title
New user
%hr
diff --git a/app/views/projects/blob/new.html.haml b/app/views/projects/blob/new.html.haml
index eb0d99d0152..9b1d03b820e 100644
--- a/app/views/projects/blob/new.html.haml
+++ b/app/views/projects/blob/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New file", @ref
+- page_title "New File", @ref
%h3.page-title New file
.file-editor
= form_tag(namespace_project_create_blob_path(@project.namespace, @project, @id), method: :post, class: 'form-horizontal form-new-file') do
diff --git a/app/views/projects/branches/new.html.haml b/app/views/projects/branches/new.html.haml
index 7ca0b78a0be..cac5dc91afd 100644
--- a/app/views/projects/branches/new.html.haml
+++ b/app/views/projects/branches/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New branch"
+- page_title "New Branch"
- if @error
.alert.alert-danger
%button{ type: "button", class: "close", "data-dismiss" => "alert"} &times;
diff --git a/app/views/projects/issues/new.html.haml b/app/views/projects/issues/new.html.haml
index 96e43855628..da6edd5c2d2 100644
--- a/app/views/projects/issues/new.html.haml
+++ b/app/views/projects/issues/new.html.haml
@@ -1,2 +1,2 @@
-- page_title "New issue"
+- page_title "New Issue"
= render "form"
diff --git a/app/views/projects/labels/new.html.haml b/app/views/projects/labels/new.html.haml
index 7cacbd0f302..b3ef17025c3 100644
--- a/app/views/projects/labels/new.html.haml
+++ b/app/views/projects/labels/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New label"
+- page_title "New Label"
%h3 New label
.back-link
= link_to namespace_project_labels_path(@project.namespace, @project) do
diff --git a/app/views/projects/merge_requests/new.html.haml b/app/views/projects/merge_requests/new.html.haml
index b1c7bea7de4..b038a640f67 100644
--- a/app/views/projects/merge_requests/new.html.haml
+++ b/app/views/projects/merge_requests/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New merge request"
+- page_title "New Merge Request"
- if @merge_request.can_be_created
= render 'new_submit'
- else
diff --git a/app/views/projects/milestones/new.html.haml b/app/views/projects/milestones/new.html.haml
index d76e417b3c5..47149dfea41 100644
--- a/app/views/projects/milestones/new.html.haml
+++ b/app/views/projects/milestones/new.html.haml
@@ -1,2 +1,2 @@
-- page_title "New milestone"
+- page_title "New Milestone"
= render "form"
diff --git a/app/views/projects/snippets/new.html.haml b/app/views/projects/snippets/new.html.haml
index 2d9beef1cbc..e38d95c45e7 100644
--- a/app/views/projects/snippets/new.html.haml
+++ b/app/views/projects/snippets/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New snippets"
+- page_title "New Snippets"
%h3.page-title
New snippet
%hr
diff --git a/app/views/projects/tags/new.html.haml b/app/views/projects/tags/new.html.haml
index 61c35e4a5e2..172fafdeeff 100644
--- a/app/views/projects/tags/new.html.haml
+++ b/app/views/projects/tags/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New tag"
+- page_title "New Tag"
- if @error
.alert.alert-danger
%button{ type: "button", class: "close", "data-dismiss" => "alert"} &times;
diff --git a/app/views/snippets/new.html.haml b/app/views/snippets/new.html.haml
index 2c920413519..a74d5e792ad 100644
--- a/app/views/snippets/new.html.haml
+++ b/app/views/snippets/new.html.haml
@@ -1,4 +1,4 @@
-- page_title "New snippet"
+- page_title "New Snippet"
%h3.page-title
New snippet
%hr