Skip to content

Commit

Permalink
Merge pull request #15140 from opf/bug/53768-fix-missing-translation-…
Browse files Browse the repository at this point in the history
…in-help-menu-for-legal-notice-menu-item

[53768] Fix impressum translation missing
  • Loading branch information
aaron-contreras authored Mar 27, 2024
2 parents 5d3241d + 5f78707 commit 216db1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/initializers/homescreen.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

if impressum_link = link_hash[:impressum]
links.push({
label: impressum_link[:label],
label: :impressum,
url: impressum_link[:href],
icon: "icon-context icon-info1"
})
Expand Down
2 changes: 1 addition & 1 deletion lib/open_project/static/links.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def dynamic_links
if impressum_link = OpenProject::Configuration.impressum_link
dynamic[:impressum] = {
href: impressum_link,
label: :impressum
label: "homescreen.links.impressum"
}
end

Expand Down

0 comments on commit 216db1e

Please sign in to comment.