2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2012-04-10 13:31:21 +00:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
2015-09-25 14:37:55 +00:00
|
|
|
# Add new inflection rules using the following format. Inflections
|
|
|
|
# are locale specific, and you may define rules for as many different
|
|
|
|
# locales as you wish. All of these examples are active by default:
|
|
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
2012-04-10 13:31:21 +00:00
|
|
|
# inflect.plural /^(ox)$/i, '\1en'
|
|
|
|
# inflect.singular /^(ox)en/i, '\1'
|
|
|
|
# inflect.irregular 'person', 'people'
|
|
|
|
# inflect.uncountable %w( fish sheep )
|
|
|
|
# end
|
2015-09-25 14:37:55 +00:00
|
|
|
|
2012-04-10 13:31:21 +00:00
|
|
|
# These inflection rules are supported but not enabled by default:
|
2015-09-25 14:37:55 +00:00
|
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
2012-04-10 13:31:21 +00:00
|
|
|
# inflect.acronym 'RESTful'
|
|
|
|
# end
|
2019-06-04 03:40:48 +00:00
|
|
|
|
|
|
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
|
|
|
|
|
|
# Rails thinks the singularized version of knowledge_bases is knowledge_basis?!
|
|
|
|
# see: KnowledgeBase.table_name.singularize
|
2021-05-12 11:37:44 +00:00
|
|
|
inflect.singular(%r{(knowledge_base)s$}i, '\1')
|
2020-06-02 11:01:16 +00:00
|
|
|
inflect.acronym 'SMIME'
|
2021-03-10 16:11:14 +00:00
|
|
|
inflect.acronym 'GitLab'
|
2021-03-10 16:25:26 +00:00
|
|
|
inflect.acronym 'GitHub'
|
2019-06-04 03:40:48 +00:00
|
|
|
end
|