fix(block): 사용자 차단 안내 문구를 역할별로 통일한다

This commit is contained in:
2026-02-25 22:30:34 +09:00
parent 4b2ef742d6
commit 8153ad52ff
5 changed files with 16 additions and 25 deletions

View File

@@ -126,20 +126,9 @@ class MemberProfileDialog(
private fun showMemberBlockDialog(memberId: Long, nickname: String) {
val message = if (SharedPreferenceManager.role == MemberRole.CREATOR.name) {
"""
${nickname}님을 차단하시겠습니까?
사용자를 차단하면 사용자는 아래 기능이 제한됩니다.
- 내가 개설한 라이브 입장 불가
- 나에게 메시지 보내기 불가
- 내 채널의 팬Talk 작성불가
""".trimIndent()
SodaLiveApplicationHolder.get().getString(R.string.screen_live_room_block_message_creator, nickname)
} else {
"""
${nickname}님을 차단하시겠습니까?
- 사용자를 차단하면 '차단한 사용자의 라이브 중 채팅'이 보이지 않습니다.
""".trimIndent()
SodaLiveApplicationHolder.get().getString(R.string.screen_live_room_block_message_user, nickname)
}
val dialog = android.app.AlertDialog.Builder(activity)
dialog.setTitle(