# frozen_string_literal: true module TheFreeDictionary class Italian < Dictionary def initialize @language = 'it' @region = 'IT' end end end