trabajo-afectivo/config/initializers/inflections.rb

29 lines
1 KiB
Ruby
Raw Permalink Normal View History

# 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
inflect.irregular 'base', 'bases'
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