summaryrefslogtreecommitdiff
path: root/app/services/projects/count_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/projects/count_service.rb')
-rw-r--r--app/services/projects/count_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/projects/count_service.rb b/app/services/projects/count_service.rb
index 3cee80c7bbc..ab4dce988cc 100644
--- a/app/services/projects/count_service.rb
+++ b/app/services/projects/count_service.rb
@@ -20,7 +20,7 @@ module Projects
def cache_key_name
raise(
NotImplementedError,
- '"cache_key_name" must be implemented and return a String'
+ _('"cache_key_name" must be implemented and return a String')
)
end
@@ -33,7 +33,7 @@ module Projects
def self.query(project_ids)
raise(
NotImplementedError,
- '"query" must be implemented and return an ActiveRecord::Relation'
+ _('"query" must be implemented and return an ActiveRecord::Relation')
)
end
end