2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 13:53:20 -08:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
|
|
|
# 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|
|
2023-10-25 06:56:09 -07:00
|
|
|
# inflect.plural /^(ox)$/i, "\\1en"
|
|
|
|
# inflect.singular /^(ox)en/i, "\\1"
|
|
|
|
# inflect.irregular "person", "people"
|
2016-02-20 13:53:20 -08:00
|
|
|
# inflect.uncountable %w( fish sheep )
|
|
|
|
# end
|
|
|
|
|
2017-01-18 14:44:29 -08:00
|
|
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
2017-06-18 16:51:04 -07:00
|
|
|
inflect.acronym 'ActivityPub'
|
2017-07-14 18:01:39 -07:00
|
|
|
inflect.acronym 'ActivityStreams'
|
2022-07-13 06:03:28 -07:00
|
|
|
inflect.acronym 'ASCII'
|
2023-11-30 05:55:20 -08:00
|
|
|
inflect.acronym 'CLI'
|
2022-09-23 14:00:12 -07:00
|
|
|
inflect.acronym 'DeepL'
|
2023-03-30 05:44:00 -07:00
|
|
|
inflect.acronym 'DSL'
|
2023-11-30 05:55:20 -08:00
|
|
|
inflect.acronym 'Ed25519'
|
|
|
|
inflect.acronym 'JsonLd'
|
|
|
|
inflect.acronym 'OEmbed'
|
|
|
|
inflect.acronym 'OStatus'
|
|
|
|
inflect.acronym 'PubSubHubbub'
|
|
|
|
inflect.acronym 'REST'
|
|
|
|
inflect.acronym 'RSS'
|
|
|
|
inflect.acronym 'StatsD'
|
|
|
|
inflect.acronym 'TOC'
|
|
|
|
inflect.acronym 'URL'
|
2020-05-09 12:06:55 -07:00
|
|
|
|
|
|
|
inflect.singular 'data', 'data'
|
2017-01-18 14:44:29 -08:00
|
|
|
end
|
2023-10-25 06:56:09 -07:00
|
|
|
|
|
|
|
# These inflection rules are supported but not enabled by default:
|
|
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
|
|
# inflect.acronym "RESTful"
|
|
|
|
# end
|