mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-01 12:02:16 +00:00
This PR moves translations into an AI Feature See https://github.com/discourse/discourse-ai/pull/1424 for screenshots
14 lines
252 B
Ruby
14 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module Translation
|
|
class ShortTextTranslator < BaseTranslator
|
|
private
|
|
|
|
def persona_setting
|
|
SiteSetting.ai_translation_short_text_translator_persona
|
|
end
|
|
end
|
|
end
|
|
end
|