File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
data/src/main/java/com/plottwist/core/data/gathering/repository
designsystem/src/main/res/values
feature/mypage/src/main/java/com/plottwist/feature/mypage Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class JoinGatheringRepositoryImpl @Inject constructor(
2828 return if (response.success) {
2929 val name = response.data?.gatheringName
3030 if (name != null ) Result .success(name)
31- else Result .failure(Exception (" 이름 없음" ))
31+ else Result .failure(Exception (" 닉네임 없음" ))
3232 } else {
3333 Result .failure(Exception (response.meta?.errorMessage ? : " 알 수 없는 에러" ))
3434 }
Original file line number Diff line number Diff line change 2929 <string name =" create_proposal_propose" >다음</string >
3030 <string name =" create_proposal_selected_gathering_name" >%s 친구들에게</string >
3131
32- <string name =" onboarding_name_title" >어떤 이름으로 친구들에게\n인사할까요?</string >
33- <string name =" onboarding_name_description" >모임 안에서 나를 알아볼 수 있게,\n실명을 적어주세요 .</string >
34- <string name =" onboarding_name_text_field_label" >이름 </string >
35- <string name =" onboarding_name_text_field_hint" >이름을 입력해 주세요</string >
32+ <string name =" onboarding_name_title" >어떤 닉네임으로 친구들에게\n인사할까요?</string >
33+ <string name =" onboarding_name_description" >모임 안에서 나를 알아볼 수 있게 작성해 주세요 .</string >
34+ <string name =" onboarding_name_text_field_label" >닉네임 </string >
35+ <string name =" onboarding_name_text_field_hint" >닉네임을 입력해 주세요</string >
3636
3737 <string name =" select_gathering_topbar_title" >모임 선택</string >
3838 <string name =" select_gathering_title" >어떤 모임에게\n넌지시 제안할까요</string >
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ fun MyPageContent(
188188 ) {
189189 item {
190190 SectionTitle (" 내 정보관리" )
191- MyPageItem (" 이름 설정" , onEditNameClick)
191+ MyPageItem (" 닉네임 설정" , onEditNameClick)
192192 MyPageItem (" 알림 설정" , onNotificationClick)
193193 }
194194
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ fun EditNameScreen(
4545 EditNameSideEffect .SaveSuccess -> {
4646 Toast .makeText(
4747 context,
48- " 이름이 변경되었어요!" ,
48+ " 닉네임이 변경되었어요!" ,
4949 Toast .LENGTH_SHORT
5050 ).show()
5151 onBack()
@@ -116,7 +116,7 @@ fun EditNameAppBar(
116116 TukTopAppBar (
117117 modifier = modifier,
118118 type = TukTopAppBarType .DEPTH ,
119- title = " 이름 설정" ,
119+ title = " 닉네임 설정" ,
120120 onBack = onBackClick
121121 )
122122}
You can’t perform that action at this time.
0 commit comments