Improves wording to download to the phone as opposed to the profile gallery

This commit is contained in:
Vitor Pamplona
2026-03-10 16:07:45 -04:00
parent b4184d2235
commit c0e97c19c0
5 changed files with 6 additions and 4 deletions
@@ -159,7 +159,7 @@ fun OverflowMenuButton(
if (showSave) {
DropdownMenuItem(
text = { Text(stringRes(R.string.save_to_gallery), color = Color.White) },
text = { Text(stringRes(R.string.download_to_phone), color = Color.White) },
onClick = {
menuExpanded.value = false
onSaveClick()
@@ -132,7 +132,7 @@ fun SaveMediaButton(onSaveClick: (localContext: Context) -> Unit) {
Icon(
imageVector = Icons.Default.Download,
modifier = Size20Modifier,
contentDescription = stringRes(R.string.save_to_gallery),
contentDescription = stringRes(R.string.download_to_phone),
)
}
}
@@ -290,7 +290,7 @@ private fun DialogContent(
Icon(
imageVector = Icons.Default.Download,
modifier = Size20Modifier,
contentDescription = stringRes(R.string.save_to_gallery),
contentDescription = stringRes(R.string.download_to_phone),
)
}
}
@@ -27,6 +27,7 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.PlayCircleOutline
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
@@ -227,7 +228,7 @@ fun UrlImageView(
imageVector = Icons.Default.PlayCircleOutline,
contentDescription = stringRes(id = R.string.play),
modifier = Size50Modifier,
tint = Color.White,
tint = MaterialTheme.colorScheme.onBackground,
)
}
}
+1
View File
@@ -162,6 +162,7 @@
<string name="pronouns">Pronouns</string>
<string name="ln_address">LN Address</string>
<string name="ln_url_outdated">LN URL (outdated)</string>
<string name="download_to_phone">Save to Phone</string>
<string name="save_to_gallery">Save to Gallery</string>
<string name="image_saved_to_the_gallery">Image saved to the phone\'s photo gallery</string>
<string name="video_download_has_started_toast">Video download has started…</string>