크리에이터 채널 페이지 추가
This commit is contained in:
@@ -540,7 +540,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
|
||||
LivePaymentDialog(
|
||||
activity = requireActivity(),
|
||||
layoutInflater = layoutInflater,
|
||||
title = "${it.price.moneyFormat()}코인으로 예약",
|
||||
title = "${it.price.moneyFormat()}캔으로 예약",
|
||||
desc = "'${it.title}' 라이브에 참여하기 위해 결제합니다.",
|
||||
confirmButtonTitle = "예약하기",
|
||||
confirmButtonClick = { processLiveReservation(roomId) },
|
||||
@@ -627,7 +627,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
|
||||
LivePaymentDialog(
|
||||
activity = requireActivity(),
|
||||
layoutInflater = layoutInflater,
|
||||
title = "${it.price.moneyFormat()}코인으로 입장",
|
||||
title = "${it.price.moneyFormat()}캔으로 입장",
|
||||
desc = "'${it.title}' 라이브에 참여하기 위해 결제합니다.",
|
||||
confirmButtonTitle = "결제 후 입장",
|
||||
confirmButtonClick = {
|
||||
|
@@ -99,7 +99,7 @@ class LiveReservationAdapter(
|
||||
binding.tvPrice.text = if (item.price <= 0) {
|
||||
"무료"
|
||||
} else {
|
||||
"${item.price.moneyFormat()}코인"
|
||||
"${item.price.moneyFormat()}캔"
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -344,7 +344,7 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
|
||||
if (can > 0) {
|
||||
donation(can, message)
|
||||
} else {
|
||||
showToast("1코인 이상 후원하실 수 있습니다.")
|
||||
showToast("1캔 이상 후원하실 수 있습니다.")
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -527,7 +527,7 @@ class LiveRoomViewModel(
|
||||
_toastLiveData.postValue(it.message)
|
||||
} else {
|
||||
_toastLiveData.postValue(
|
||||
"후원에 실패한 코인이 환불되지 않았습니다\n고객센터로 문의해주세요."
|
||||
"후원에 실패한 캔이 환불되지 않았습니다\n고객센터로 문의해주세요."
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -536,7 +536,7 @@ class LiveRoomViewModel(
|
||||
_isLoading.value = false
|
||||
it.message?.let { message -> Logger.e(message) }
|
||||
_toastLiveData.postValue(
|
||||
"후원에 실패한 코인이 환불되지 않았습니다\n고객센터로 문의해주세요."
|
||||
"후원에 실패한 캔이 환불되지 않았습니다\n고객센터로 문의해주세요."
|
||||
)
|
||||
}
|
||||
)
|
||||
|
@@ -259,7 +259,7 @@ data class LiveRoomDonationChat(
|
||||
)
|
||||
),
|
||||
0,
|
||||
chat.indexOf("코인", 0, true) + 2,
|
||||
chat.indexOf("캔", 0, true) + 2,
|
||||
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user