# frozen_string_literal: true module TheFreeDictionary class Russian < Dictionary def initialize @language = 'ru' @region = 'RU' end end end