diff --git a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllAdapter.kt b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllAdapter.kt
index 42268cc1..17811c7c 100644
--- a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllAdapter.kt
+++ b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllAdapter.kt
@@ -39,7 +39,11 @@ class UserProfileDonationAllAdapter(private val userId: Long) :
if (item.donationCan > 0 && SharedPreferenceManager.userId == userId) {
binding.tvTotalDonationCan.visibility = View.VISIBLE
- binding.tvTotalDonationCan.text = "${item.donationCan.moneyFormat()} 캔"
+ binding.tvTotalDonationCan.text = context.getString(
+ R.string.screen_user_profile_donation_total_can_format,
+ item.donationCan.moneyFormat(),
+ context.getString(R.string.screen_user_profile_donation_can_unit)
+ )
}
val lp = binding.rlDonationRanking.layoutParams as RelativeLayout.LayoutParams
diff --git a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllViewActivity.kt b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllViewActivity.kt
index ff775fb0..15adb328 100644
--- a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllViewActivity.kt
+++ b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/donation/UserProfileDonationAllViewActivity.kt
@@ -37,14 +37,18 @@ class UserProfileDonationAllViewActivity : BaseActivity
@@ -43,15 +43,15 @@
tools:src="@drawable/btn_toggle_on_big" />
-
+
@@ -92,7 +92,7 @@
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:fontFamily="@font/gmarket_sans_light"
- android:text=" 캔"
+ android:text="@string/screen_user_profile_donation_can_unit_with_space"
android:textColor="@color/color_eeeeee"
android:textSize="12sp" />
@@ -106,7 +106,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
- android:text="지난주"
+ android:text="@string/screen_user_profile_donation_stat_last_week"
android:textColor="@color/color_eeeeee"
android:textSize="12sp" />
@@ -126,7 +126,7 @@
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:fontFamily="@font/gmarket_sans_light"
- android:text=" 캔"
+ android:text="@string/screen_user_profile_donation_can_unit_with_space"
android:textColor="@color/color_eeeeee"
android:textSize="12sp" />
@@ -140,7 +140,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
- android:text="이번 달 어제까지"
+ android:text="@string/screen_user_profile_donation_stat_this_month"
android:textColor="@color/color_eeeeee"
android:textSize="12sp" />
@@ -160,7 +160,7 @@
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:fontFamily="@font/gmarket_sans_light"
- android:text=" 캔"
+ android:text="@string/screen_user_profile_donation_can_unit_with_space"
android:textColor="@color/color_eeeeee"
android:textSize="12sp" />
@@ -177,7 +177,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_medium"
- android:text="전체"
+ android:text="@string/screen_user_profile_donation_total_label"
android:textColor="@color/color_eeeeee"
android:textSize="14.7sp" />
@@ -195,7 +195,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_medium"
- android:text="개"
+ android:text="@string/screen_user_profile_donation_total_unit"
android:textColor="@color/color_777777"
android:textSize="12sp" />
diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml
index e8dfdfce..59fa373e 100644
--- a/app/src/main/res/values-en/strings.xml
+++ b/app/src/main/res/values-en/strings.xml
@@ -761,6 +761,17 @@
Series
Total %1$d episodes
Donation ranking
+ View all donation rankings
+ Show donation ranking on channel
+ Disabling hides the donation ranking on the channel,\nand ranking badges will not appear during live streams.
+ Today
+ Last week
+ This month (until yesterday)
+ cans
+ \u0020cans
+ Total
+ items
+ %1$s %2$s
Community
Create post
After posting, your post will appear here\nand be visible in the community.
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index aa35bf8d..5c0df32a 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -761,6 +761,17 @@
シリーズ
全%1$d話
後援ランキング
+ 後援ランキングをすべて見る
+ チャンネルに後援ランキングを表示
+ 無効にするとチャンネル内に後援ランキングが表示されず、\nライブ中もランキングバッジが反映されません。
+ 今日
+ 先週
+ 今月 (昨日まで)
+ 缶
+ \u0020缶
+ 合計
+ 件
+ %1$s %2$s
コミュニティ
投稿する
投稿するとここに表示され\nコミュニティに公開されます。
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 8116df07..6a937d44 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -760,6 +760,17 @@
시리즈
총 %1$d화
후원랭킹
+ 후원랭킹 전체보기
+ 채널에 후원랭킹 활성화
+ ※ 비활성화하면 채널 내 후원랭킹이 표시되지 않으며,\n라이브 중에도 후원랭킹에 따른 뱃지가 반영되지 않습니다.
+ 오늘
+ 지난주
+ 이번 달 어제까지
+ 캔
+ \u0020캔
+ 전체
+ 개
+ %1$s %2$s
커뮤니티
게시물 등록
게시 후에 게시물이 여기에 표시되고\n커뮤니티에 공개됩니다.