Skip to content

Commit

Permalink
[ADD] #50 : 일정 추가 2번째 페이지 string 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Nov 29, 2023
1 parent 2f520d6 commit c2d3a03
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private fun EventDetailsContent(
RegistrationTextField(
value = eventContent,
onValueChange = onContentChanged,
placeholder = stringResource(R.string.event_description_hint),
placeholder = stringResource(R.string.event_content_hint),
modifier = Modifier
.fillMaxWidth()
.height(200.dp),
Expand Down Expand Up @@ -163,7 +163,7 @@ private fun EventScheduleContent(
RegistrationTextField(
value = eventDate,
onValueChange = onDateChanged,
placeholder = stringResource(R.string.event_description_hint),
placeholder = stringResource(R.string.event_content_hint),
modifier = Modifier.fillMaxWidth(),
)

Expand All @@ -177,7 +177,7 @@ private fun EventScheduleContent(
RegistrationTextField(
value = eventTime,
onValueChange = onTimeChanged,
placeholder = stringResource(R.string.event_description_hint),
placeholder = stringResource(R.string.event_content_hint),
modifier = Modifier.fillMaxWidth(),
)
}
Expand Down
10 changes: 8 additions & 2 deletions feature/management/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@
<string name="event_schedule_content">정확한 날짜와 시간 그리고 장소를 입력해주세요.</string>
<string name="event_title">행사 이름</string>
<string name="event_title_hint">행사 이름을 입력하세요.</string>
<string name="event_description">행사 소개</string>
<string name="event_description_hint">행사를 이해하기 쉽도록 소개해주세요.</string>
<string name="event_content">행사 소개</string>
<string name="event_content_hint">행사를 이해하기 쉽도록 소개해주세요.</string>
<string name="next">다음</string>
<string name="event_location">장소</string>
<string name="event_date">날짜</string>
<string name="event_time">시간</string>
<string name="event_location_hint">어디에서 진행되는 일정인가요?</string>
<string name="event_date_hint">언제 진행되는 일정인가요?</string>
<string name="event_time_hint">몇시부터 몇시까지 진행되는 일정인가요?</string>
<string name="register_event">일정 등록</string>
</resources>

0 comments on commit c2d3a03

Please sign in to comment.