비밀후원 -> 비밀미션

This commit is contained in:
klaus 2024-11-08 23:20:29 +09:00
parent 03712558e8
commit c72c1e16fd
4 changed files with 5 additions and 5 deletions

View File

@ -35,8 +35,8 @@ android {
applicationId "kr.co.vividnext.sodalive"
minSdk 23
targetSdk 34
versionCode 122
versionName "1.22.3"
versionCode 123
versionName "1.23.0"
}
buildTypes {

View File

@ -1576,7 +1576,7 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
private fun donation(can: Int, message: String, isSecret: Boolean) {
val rawMessage = if (isSecret) {
"${can}을 비밀후원하셨습니다.\uD83D\uDCB0\uD83E\uDE99"
"${can}으로 비밀미션을 보냈습니다.\uD83D\uDCB0\uD83E\uDE99"
} else {
"${can}캔을 후원하셨습니다.\uD83D\uDCB0\uD83E\uDE99"
}

View File

@ -78,7 +78,7 @@ class LiveRoomDonationDialog(
val isSelected = dialogView.tvSecret.isSelected
dialogView.tvSecret.isSelected = !isSelected
dialogView.etDonationMessage.hint = if (!isSelected) {
"함께 보낼 비밀 메시지 입력(최대 200자)"
"비밀 미션을 입력하세요(최대 200자)"
} else {
"함께 보낼 메시지 입력(최대 200자)"
}

View File

@ -88,7 +88,7 @@
android:fontFamily="@font/gmarket_sans_medium"
android:gravity="center"
android:paddingHorizontal="8dp"
android:text="비밀후원"
android:text="비밀미션"
android:textColor="@color/color_check_secret"
app:drawableStartCompat="@drawable/ic_select_square" />
</RelativeLayout>