Commit 95a7e7c8 authored by Sashi Kumar's avatar Sashi Kumar

Mark unauthenticated user for translation in Audit Event

parent a7b0553d
---
title: Translate unauthenticated user string for Audit Event
merge_request:
author: Sashi Kumar
type: other
...@@ -7,10 +7,10 @@ module Gitlab ...@@ -7,10 +7,10 @@ module Gitlab
super(id: -1, name: name) super(id: -1, name: name)
end end
# Events that are authored by unathenticated users, should be # Events that are authored by unauthenticated users, should be
# shown as authored by `An unauthenticated user` in the UI. # shown as authored by `An unauthenticated user` in the UI.
def name def name
@name || 'An unauthenticated user' @name || _('An unauthenticated user')
end end
end end
end end
......
...@@ -2293,6 +2293,9 @@ msgstr "" ...@@ -2293,6 +2293,9 @@ msgstr ""
msgid "An issue can be a bug, a todo or a feature request that needs to be discussed in a project. Besides, issues are searchable and filterable." msgid "An issue can be a bug, a todo or a feature request that needs to be discussed in a project. Besides, issues are searchable and filterable."
msgstr "" msgstr ""
msgid "An unauthenticated user"
msgstr ""
msgid "An unexpected error occurred while checking the project environment." msgid "An unexpected error occurred while checking the project environment."
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment