@@ -62,9 +62,9 @@ internal fun ProfileRoute(
6262
6363 if (uiState.showLogoutDialog) {
6464 YappAlertDialog (
65- title = " 로그아웃 할까요? " ,
66- actionButtonText = " 아니요! " ,
67- recommendActionButtonText = " 로그아웃 " ,
65+ title = stringResource( R .string.profile_logout_title) ,
66+ actionButtonText = stringResource( R .string.profile_logout_action_button) ,
67+ recommendActionButtonText = stringResource( R .string.profile_logout_recommend_button) ,
6868 onDismissRequest = { viewModel.store.onIntent(ProfileIntent .OnDismissLogout ) },
6969 onActionButtonClick = { viewModel.store.onIntent(ProfileIntent .OnCancelLogout ) },
7070 onRecommendActionButtonClick = { viewModel.store.onIntent(ProfileIntent .OnLaunchedLogout ) },
@@ -118,7 +118,7 @@ private fun ProfileScreen(
118118 Spacer (modifier = Modifier .height(12 .dp))
119119 ProfileSectionItem (
120120 onClickItem = onClickAttendHistory,
121- title = " 출석내역 " ,
121+ title = stringResource( R .string.profile_attend_title) ,
122122 slot = {
123123 Icon (
124124 painter = painterResource(id = com.yapp.core.designsystem.R .drawable.icon_chevron_right),
@@ -129,7 +129,7 @@ private fun ProfileScreen(
129129 )
130130 ProfileSectionItem (
131131 onClickItem = onClickPreviousHistory,
132- title = " 이전 활동 내역 " ,
132+ title = stringResource( R .string.profile_previous_history) ,
133133 slot = {
134134 Icon (
135135 painter = painterResource(id = com.yapp.core.designsystem.R .drawable.icon_chevron_right),
@@ -140,7 +140,7 @@ private fun ProfileScreen(
140140 )
141141 ProfileSectionItem (
142142 onClickItem = onClickQuestion,
143- title = " 이용문의 " ,
143+ title = stringResource( R .string.profile_question_title) ,
144144 slot = {
145145 Icon (
146146 painter = painterResource(id = com.yapp.core.designsystem.R .drawable.icon_chevron_right),
@@ -151,13 +151,13 @@ private fun ProfileScreen(
151151 )
152152 ProfileSectionItem (
153153 onClickItem = onClickWithdraw,
154- title = " 회원탈퇴 "
154+ title = stringResource( R .string.profile_withdraw_title)
155155 )
156156 }
157157 Column {
158158 YappOutlinedSecondaryButtonLarge (
159159 modifier = Modifier .fillMaxWidth().padding(start = 16 .dp, end = 16 .dp, bottom = 8 .dp),
160- text = " 로그아웃 " ,
160+ text = stringResource( R .string.profile_logout_button) ,
161161 onClick = onCLickLogout
162162 )
163163 }
0 commit comments