Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ enum class SongLevel(val title: String, val goal: String, val description: Strin
description = "You and this song are one and the same. \n An eternal flame burning in your musical heart. \n A legend.",
),
UNDEFINED(
title = "Ops",
title = "Oops 😢",
goal = "It seems like you haven't listened to any songs",
description = "Nothing to see here",
)
Expand Down Expand Up @@ -184,7 +184,7 @@ enum class AlbumLevel(val title: String, val goal: String, val description: Stri
description = "This album is more than music, it's your sanctuary. \n A sacred place to return to for peace and inspiration.",
),
UNDEFINED(
title = "Ops",
title = "Oops 😢",
goal = "It seems like you haven't listened to any albums",
description = "Nothing to see here",
)
Expand Down Expand Up @@ -213,7 +213,7 @@ enum class PlaylistLevel(val title: String, val goal: String, val description: S
description = "You didn't just create a playlist, you composed a masterpiece.\n This is your magnum opus, your legacy.",
),
UNDEFINED(
title = "Ops",
title = "Oops 😢",
goal = "It seems like you haven't listened to any playlists",
description = "Nothing to see here",
)
Expand Down Expand Up @@ -242,7 +242,7 @@ enum class ArtistLevel(val title: String, val goal: String, val description: Str
description = "This artist's music is more than just sound, it's a part of you. \n A deep and unbreakable bond.",
),
UNDEFINED(
title = "Ops",
title = "Oops 😢",
goal = "It seems like you haven't listened to any artists",
description = "Nothing to see here",
)
Expand Down Expand Up @@ -590,4 +590,4 @@ fun getRewindSlides(year: Int? = null): List<RewindSlide> {
// end
state.outro
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fun IntroSlide(slide: RewindSlide.IntroSlide, isPageActive: Boolean) {

AnimatedContent(isVisible = isContentVisible, delay = 1000) {
Text(
text = "Your listening, your discoveries and your obsessions. Get ready to relive your most unforgettable musical moments.",
text = "Your listening!\nYour discoveries!\nYour obsessions!\nGet ready to relive your most unforgettable musical moments.",
color = Color.White.copy(alpha = 0.8f),
fontSize = 18.sp,
textAlign = TextAlign.Center,
Expand All @@ -126,7 +126,7 @@ fun IntroSlide(slide: RewindSlide.IntroSlide, isPageActive: Boolean) {

AnimatedContent(isVisible = isContentVisible, delay = 1200) {
Text(
text = "Remember, your privacy is respected, all data used is yours, is only in your device and managed by you.",
text = "Remember, your privacy is respected!\nAll data used is only in your device and managed by you.",
color = Color.White.copy(alpha = 0.9f),
fontSize = 15.sp,
textAlign = TextAlign.Center,
Expand Down Expand Up @@ -161,4 +161,4 @@ fun IntroSlide(slide: RewindSlide.IntroSlide, isPageActive: Boolean) {
}
}

}
}
8 changes: 4 additions & 4 deletions composeApp/src/androidMain/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1012,16 +1012,16 @@
<string name="rw_your_favorite_playlist">Your favorite playlist %1$d</string>
<string name="rw_your_favorite_artist">Your favorite artist %1$d</string>
<string name="rw_annual_listener_level">Annual Listener Level %1$d</string>
<string name="rw_songs_listened_to">Songs listened to %1$d</string>
<string name="rw_songs_listened_to">Songs listened to in %1$d</string>
<string name="rw_songs">%1$s songs</string>
<string name="rw_minutes">%1$s minutes</string>
<string name="rw_albums">%1$s albums</string>
<string name="rw_artists">%1$s artists</string>
<string name="rw_playlists">%1$s playlists</string>
<string name="rw_rewind_year">Rewind %1$d</string>
<string name="rw_albums_listened_to">Albums listened to %1$d</string>
<string name="rw_artists_listened_to">Artists listened to %1$d</string>
<string name="rw_playlists_listened_to">Playlists listened to %1$d</string>
<string name="rw_albums_listened_to">Albums listened to in %1$d</string>
<string name="rw_artists_listened_to">Artists listened to in %1$d</string>
<string name="rw_playlists_listened_to">Playlists listened to in %1$d</string>
<string name="rw_let_s_analyze">Let\'s analyze</string>
<string name="rw_your_history">" your HISTORY"</string>
<string name="rw_ready_for">ready for</string>
Expand Down