# frozen_string_literal: true module TheFreeDictionary class French < Dictionary def initialize @language = 'fr' @region = 'EU' end end end