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