diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-18 00:08:09 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-18 00:08:09 +0000 |
commit | 2a65a97e12a0754b9f0d91ee996a6e61e00c80c8 (patch) | |
tree | f439c93cc95a324ba7422b0b650431a628be9b07 /app/helpers/clusters_helper.rb | |
parent | 2d96e61ceb1a3f26283dfba43f85d99488752296 (diff) | |
download | gitlab-ce-2a65a97e12a0754b9f0d91ee996a6e61e00c80c8.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/clusters_helper.rb')
-rw-r--r-- | app/helpers/clusters_helper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/clusters_helper.rb b/app/helpers/clusters_helper.rb index 0037c49f134..f55acad8517 100644 --- a/app/helpers/clusters_helper.rb +++ b/app/helpers/clusters_helper.rb @@ -9,11 +9,11 @@ module ClustersHelper def create_new_cluster_label(provider: nil) case provider when 'aws' - s_('ClusterIntegration|Create new Cluster on EKS') + s_('ClusterIntegration|Create new cluster on EKS') when 'gcp' - s_('ClusterIntegration|Create new Cluster on GKE') + s_('ClusterIntegration|Create new cluster on GKE') else - s_('ClusterIntegration|Create new Cluster') + s_('ClusterIntegration|Create new cluster') end end |