Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update donate screen texts #334

Merged
merged 1 commit into from
Aug 22, 2024
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 @@ -76,7 +76,7 @@ internal data class SettingsEnStrings(
override val buyMeACoffee: String = "Buy me a Coffee"
override val donateDescription: String = "If you are enjoying this app and want to help me maintain it, please consider buying me a coffee."
override val fromBrazil: String = "Hey Brazil"
override val fromBrazilDescription: String = "If you are from Brazil, you can also support me by using Pix."
override val fromBrazilDescription: String = "If you are from Brazil, you can also buy me a coffee using Pix."
override val pixCopyAndPaste: String = "Pix Copy and Paste"
override val pixKey: String = "Pix Key"
override val supportMe: String = "Support me"
Expand Down Expand Up @@ -105,10 +105,10 @@ internal data class SettingsPtStrings(
override val imageContentScaleCrop: String = "Expandir a imagem",
override val openGitHubProject: String = "Abrir Projeto no GitHub",
override val donateStrings: DonateStrings = object : DonateStrings {
override val buyMeACoffee: String = "Compre-me um Café"
override val donateDescription: String = "Se você está gostando deste aplicativo e quer me ajudar a mantê-lo, considere me comprar um café."
override val buyMeACoffee: String = "Pague um café"
override val donateDescription: String = "Se você está gostando deste aplicativo e quer me ajudar a mantê-lo, considere me pagar um café."
override val fromBrazil: String = "E aí Brasil"
override val fromBrazilDescription: String = "Se você é do Brasil, também pode me apoiar usando Pix."
override val fromBrazilDescription: String = "Se você é do Brasil, também pode me pagar um café usando Pix."
override val pixCopyAndPaste: String = "Pix Copia e Cola"
override val pixKey: String = "Chave Pix"
override val supportMe: String = "Me apoie"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.MaterialTheme
Expand Down Expand Up @@ -183,7 +184,6 @@ private fun BuyMeCoffeeButton(
modifier: Modifier = Modifier
) = Row(
modifier = modifier
.height(54.dp)
.animatePressed(
onClick = onClick,
)
Expand All @@ -198,7 +198,7 @@ private fun BuyMeCoffeeButton(
Image(
painter = painterResource(Res.drawable.ic_ko_fi_logo),
contentDescription = null,
modifier = Modifier.padding(vertical = contentVerticalPadding)
modifier = Modifier.size(48.dp).padding(vertical = contentVerticalPadding)
)
Spacer(modifier = Modifier.width(8.dp))
Column(
Expand Down
Loading