discourse_narrative_bot.new_user_narrative.hello.message
doesn’t accept
%{new_user_tips}
is there a reason for it?
discourse_narrative_bot.new_user_narrative.hello.message
doesn’t accept
%{new_user_tips}
is there a reason for it?
Why should it? You can’t use arbitrary interpolation keys within translations. Only the ones used in the English text and this particular text doesn’t use any interpolation.
not sure what you mean by “arbitrary”.
%{new_user_tips} links to system_messages.usage_tips.text_body_template and can be used in:
system_messages.welcome_user.text_body_template
system_messages.welcome_invite.text_body_template
Anche io sono confuso su questo argomento relativo alle chiavi di interpolazione valide nei template. In precedenza abbiamo personalizzato template come user_notifications.reply_by_email, ad esempio per dire…
Il secondo elemento contiene il link:
%{base_url}/new-message?username=%{username}&title=Il%20tuo%20post%20%{topic_title_url_encoded}&body=Riguardo%20al%20tuo%20post%20in%20%{base_url}%{url}
Questa configurazione è stata utilizzata per un certo periodo e funziona perfettamente. Oggi abbiamo bisogno di modificare il testo in user_notifications.reply_by_email, ma al salvataggio otteniamo l’errore:
Le seguenti chiavi di interpolazione non sono valide: "username, topic_title_url_encoded"
Perché esiste questa limitazione ora e come possiamo aggirarla?