Skip to content

Commit

Permalink
fix: String resource
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirFir committed Nov 8, 2024
1 parent 7f85df8 commit fd91a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ internal fun CommonTimetableView(

Text(
modifier = Modifier.padding(vertical = 8.dp),
text = stringResource(R.string.updated_at) + " " + timetable.updatedAt,
text = stringResource(R.string.updated_at, timetable.updatedAt),
style = KoinTheme.typography.regular14,
color = KoinTheme.colors.neutral500
)
Expand Down
2 changes: 1 addition & 1 deletion feature/bus/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<string name="to_cheonan">천안방면</string>
<string name="am">오전</string>
<string name="pm">오후</string>
<string name="updated_at">업데이트 날짜 :</string>
<string name="updated_at">업데이트 날짜 : %s</string>
<string name="n400">400번</string>
<string name="n405">405번</string>
<string name="n495">495번</string>
Expand Down

0 comments on commit fd91a58

Please sign in to comment.