2023-07-12 09:47:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 22:53:20 +01: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 15:56:09 +02:00
|
|
|
# inflect.plural /^(ox)$/i, "\\1en"
|
|
|
|
# inflect.singular /^(ox)en/i, "\\1"
|
|
|
|
# inflect.irregular "person", "people"
|
2016-02-20 22:53:20 +01:00
|
|
|
# inflect.uncountable %w( fish sheep )
|
|
|
|
# end
|
|
|
|
|
2017-01-18 23:44:29 +01:00
|
|
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
2017-06-19 01:51:04 +02:00
|
|
|
inflect.acronym 'ActivityPub'
|
2017-07-15 03:01:39 +02:00
|
|
|
inflect.acronym 'ActivityStreams'
|
2022-07-13 15:03:28 +02:00
|
|
|
inflect.acronym 'ASCII'
|
2023-11-30 14:55:20 +01:00
|
|
|
inflect.acronym 'CLI'
|
2022-09-23 23:00:12 +02:00
|
|
|
inflect.acronym 'DeepL'
|
2023-03-30 14:44:00 +02:00
|
|
|
inflect.acronym 'DSL'
|
2023-11-30 14:55:20 +01: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 21:06:55 +02:00
|
|
|
|
|
|
|
inflect.singular 'data', 'data'
|
2017-01-18 23:44:29 +01:00
|
|
|
end
|
2023-10-25 15:56:09 +02:00
|
|
|
|
|
|
|
# These inflection rules are supported but not enabled by default:
|
|
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
|
|
# inflect.acronym "RESTful"
|
|
|
|
# end
|