Commit 1bf90917 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre

Merge branch 'sk/212258-add-translated-text' into 'master'

Mark unauthenticated user for translation in Audit Event

See merge request gitlab-org/gitlab!31856
parents d7c3d735 05046bac
---
title: Translate unauthenticated user string for Audit Event
merge_request: 31856
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
......
...@@ -2303,6 +2303,9 @@ msgstr "" ...@@ -2303,6 +2303,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