Sha256: b4cf38266c431573c37ba408246f37ca82eb74c719940226a0ba55067ebac3ec
Contents?: true
Size: 1.08 KB
Versions: 13
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Decidim # This job is part of the machine translation flow. This one specifically # delegates the arguments to the translation service, if any. class MachineTranslationFieldsJob < ApplicationJob queue_as :translations # Performs the job. It will not perform anything if the # `Decidim.machine_translation_service` config is not set. # # resource - Any kind of `Decidim::TranslatableResource` model instance # field_name - A Symbol representing the name of the field being translated # field_value - A String with the value of the field to translate # target_locale - A Symbol representing the target locale for the translation # source_locale - A Symbol representing the source locale for the translation def perform(resource, field_name, field_value, target_locale, source_locale) klass = Decidim.machine_translation_service_klass return unless klass klass.new( resource, field_name, field_value, target_locale, source_locale ).translate end end end
Version data entries
13 entries across 13 versions & 1 rubygems