Skip to content

Commit

Permalink
Replace button texts: Authenticate with Authorize and Continue an…
Browse files Browse the repository at this point in the history
…d `Authorize` with `Authenticate with Spotify`
  • Loading branch information
sakethpathike committed Dec 16, 2024
1 parent bf0f753 commit 8bbbf6f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ fun ImportFromSpotifyScreen(
text = buildAnnotatedString {
append("Now, click the ")
withStyle(SpanStyle(fontWeight = FontWeight.SemiBold)) {
append("Authorize")
append("Authenticate with Spotify")
}
append(" button below and login with your account from which you want to import from, and authorize, which will redirect you to a site which should start from ")
withStyle(SpanStyle(fontWeight = FontWeight.SemiBold)) {
Expand All @@ -469,7 +469,7 @@ fun ImportFromSpotifyScreen(
}
append(" and click the ")
withStyle(SpanStyle(fontWeight = FontWeight.SemiBold)) {
append("Authenticate")
append("Authorize and Continue")
}
append(" button.")
})
Expand Down Expand Up @@ -560,7 +560,7 @@ fun ImportFromSpotifyScreen(
.fillMaxWidth()
.padding(start = 15.dp, end = 15.dp)
) {
Text(text = "Authorize")
Text(text = "Authenticate with Spotify")
}
HorizontalDivider(
modifier = Modifier
Expand Down Expand Up @@ -608,7 +608,7 @@ fun ImportFromSpotifyScreen(
.fillMaxWidth()
.padding(start = 15.dp, bottom = 15.dp, end = 15.dp)
) {
Text(text = "Authenticate")
Text(text = "Authorize and Continue")
}
} else {
LinearProgressIndicator(
Expand Down

0 comments on commit 8bbbf6f

Please sign in to comment.