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/app
diff options
context:
space:
mode:
authorDaniel Danner <daniel@danner.de>2019-07-13 16:29:47 +0300
committerStan Hu <stanhu@gmail.com>2019-07-13 16:29:47 +0300
commit0b2ccbcc52af0023a6f2799c79a59599952393d2 (patch)
treeeab8a2f67aecc026ab58435e93a52fffe3acbd5c /app
parent6005208e39bb0d7dcca3101ea9daa09d62c6c656 (diff)
Fix typo "beetween" in timeout validation message
Diffstat (limited to 'app')
-rw-r--r--app/models/project.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 2a29cb1ae09..f6f7d373f91 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -432,7 +432,7 @@ class Project < ApplicationRecord
numericality: { greater_than_or_equal_to: 10.minutes,
less_than: 1.month,
only_integer: true,
- message: _('needs to be beetween 10 minutes and 1 month') }
+ message: _('needs to be between 10 minutes and 1 month') }
# Used by Projects::CleanupService to hold a map of rewritten object IDs
mount_uploader :bfg_object_map, AttachmentUploader