mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
10 lines
262 B
Ruby
10 lines
262 B
Ruby
module OpenProject
|
|
module GlobalSearch
|
|
def self.tab_name(tab)
|
|
I18n.t("global_search.overwritten_tabs.#{tab}",
|
|
default: I18n.t("label_#{tab.singularize}_plural",
|
|
default: tab.to_s.humanize))
|
|
end
|
|
end
|
|
end
|