File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
kotlin/org/jetbrains/kotlinconf/screens Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -106,10 +106,7 @@ We will process your data in accordance with the App Privacy Policy. You can adj
106
106
107
107
<string name =" schedule_action_filter_bookmarked" >Filter bookmarked</string >
108
108
<string name =" schedule_action_search" >Search</string >
109
- <plurals name =" schedule_in_x_minutes" >
110
- <item quantity =" one" >In %1$d minute</item >
111
- <item quantity =" other" >In %1$d minutes</item >
112
- </plurals >
109
+ <string name =" schedule_in_x_minutes" >in %1$d min</string >
113
110
114
111
<string name =" session_title" >Schedule</string >
115
112
<string name =" session_how_was_the_talk" >How was the talk?</string >
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ import kotlinconfapp.shared.generated.resources.schedule_in_x_minutes
38
38
import kotlinconfapp.ui_components.generated.resources.bookmark_24
39
39
import kotlinconfapp.ui_components.generated.resources.search_24
40
40
import kotlinx.coroutines.launch
41
- import org.jetbrains.compose.resources.pluralStringResource
42
41
import org.jetbrains.compose.resources.stringResource
43
42
import org.jetbrains.kotlinconf.SessionCardView
44
43
import org.jetbrains.kotlinconf.SessionId
@@ -400,7 +399,7 @@ private fun SessionCard(
400
399
lightning = session.isLightning,
401
400
time = session.badgeTimeLine,
402
401
timeNote = session.startsInMinutes?.let { count ->
403
- pluralStringResource (Res .plurals .schedule_in_x_minutes, count , count)
402
+ stringResource (Res .string .schedule_in_x_minutes, count)
404
403
},
405
404
status = when {
406
405
session.isFinished -> TalkStatus .Past
You can’t perform that action at this time.
0 commit comments