Update backups all set bottom sheet.

This commit is contained in:
Cody Henthorne
2025-09-12 15:09:14 -04:00
parent b3b3a4bebf
commit d9cfdd1b32
2 changed files with 1 additions and 15 deletions

View File

@@ -14,7 +14,6 @@ import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.widthIn
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
@@ -121,16 +120,7 @@ private fun CreateBackupBottomSheetContent(
modifier = Modifier.widthIn(min = 220.dp)
) {
Text(
text = stringResource(id = R.string.CreateBackupBottomSheet__back_up_now)
)
}
TextButton(
onClick = onBackupLaterClick,
modifier = Modifier.widthIn(min = 220.dp).padding(top = 16.dp)
) {
Text(
text = stringResource(id = R.string.CreateBackupBottomSheet__back_up_later)
text = stringResource(id = android.R.string.ok)
)
}
}

View File

@@ -864,10 +864,6 @@
<string name="CreateBackupBottomSheet__you_are_all_set">You\'re all set. Start your backup now.</string>
<!-- Bottom sheet message -->
<string name="CreateBackupBottomSheet__depending_on_the_size">Depending on the size of your backup, this could take a long time. You can use your phone as you normally do while the backup takes place.</string>
<!-- Action button to dismiss sheet and back up later -->
<string name="CreateBackupBottomSheet__back_up_later">Back up later</string>
<!-- Action button to dismiss sheet and back up now -->
<string name="CreateBackupBottomSheet__back_up_now">Back up now</string>
<!-- Headline text for a bottom sheet dialog shown when the restoration of the media backup fails. -->
<string name="RestoreMediaFailedBottomSheet__Cant_restore_media">Can\'t restore media</string>