feat: locale specific help posts (#43290)
This commit is contained in:
committed by
GitHub
parent
673b1caa39
commit
b9d08f2fea
@@ -81,7 +81,9 @@ function createQuestionEpic(action$, state$, { window }) {
|
||||
)}\n${i18next.t('forum-help.add-code-three')}\n\n\`\`\`\n${endingText}`
|
||||
);
|
||||
|
||||
const category = window.encodeURIComponent(helpCategory || 'Help');
|
||||
const category = window.encodeURIComponent(
|
||||
i18next.t('links:help.' + helpCategory || 'Help')
|
||||
);
|
||||
|
||||
const studentCode = window.encodeURIComponent(textMessage);
|
||||
const altStudentCode = window.encodeURIComponent(altTextMessage);
|
||||
|
Reference in New Issue
Block a user