메시지 "Welcome back"에 연결된 변수 변경

Hello,

I’m new to this community and I’ve just installed a Discourse server.
I’m currently trying to modify the “Welcome back, USER!” message that appears when you arrive on the site and when you’re logged in.

So I went into the texts and I found the " js.welcome_banner.header.logged_in_members"

My problem is that the interpolation key “preferred_display_name” seems to be the only key available for this field.
I have found absolutely no reference to this key in the Discourse documentation and if I try to put something else, like “username” or “name”, when saving, I get a message saying that the key is invalid.

What to do?
Thank you

메타에 오신 것을 환영합니다 :waving_hand:

코드에서 제공되지 않는 텍스트에서는 키를 사용할 수 없습니다. 때로는 사용 가능한 키 목록을 볼 수 있지만, 일반적으로 텍스트에서 사용하는 키만 사용할 수 있습니다.
왜 사용자 이름이나 이름 대신 다른 것을 사용하시려는 건가요? 사이트 설정에 따라 선호하는 표시 이름은 둘 중 하나로 대체됩니다.
display_name_on_posts를 활성화하고 prioritize_username_in_ux를 비활성화한 경우, 배너에는 이름이 사용됩니다. 그렇지 않으면 사용자 이름이 사용됩니다.

관리자가 설정과 독립적으로 결정할 수 있도록 이름과 사용자 이름 키를 추가하는 기능에 대해 Contribute > Feature 채널에서 주제를 시작해 볼 수 있습니다.

Indeed, by enabling/disabling these 2 options, it meets my request.
Thank you