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
path: root/qa
diff options
context:
space:
mode:
authorantony liu <sun_apollo@yeah.net>2019-07-10 13:25:43 +0300
committerBob Van Landuyt <bob@gitlab.com>2019-07-10 13:25:43 +0300
commitc9f63f272fb9fefa9e061fc237ccadb364cd1dc0 (patch)
tree72f017325a74296d07503f07b73cfa4e2609811f /qa
parent0cd59a756cdee7aac8915f3e96ba4f065e5cbc9c (diff)
Some improvement about text translation
Fix symbol '&' display. Remove unnecessary calls of `.html_safe`
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/project/new.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/page/project/new.rb b/qa/qa/page/project/new.rb
index defd85a5740..0918445d119 100644
--- a/qa/qa/page/project/new.rb
+++ b/qa/qa/page/project/new.rb
@@ -18,7 +18,7 @@ module QA
element :project_name, 'text_field :name' # rubocop:disable QA/ElementWithPattern
element :project_path, 'text_field :path' # rubocop:disable QA/ElementWithPattern
element :project_description, 'text_area :description' # rubocop:disable QA/ElementWithPattern
- element :project_create_button, "submit 'Create project'" # rubocop:disable QA/ElementWithPattern
+ element :project_create_button, "submit _('Create project')" # rubocop:disable QA/ElementWithPattern
element :visibility_radios, 'visibility_level:' # rubocop:disable QA/ElementWithPattern
end