Found 3 matches for pattern "action_dismiss" in the workspace directory: --- File: app/src/main/java/com/servicebook/ui/components/PrivacyPolicyDialog.kt L19- ) { L20- AlertDialog( L21- onDismissRequest = onDismissRequest, L22- title = { L23- Text(text = stringResource(R.string.settings_privacy_title)) L24- }, L25- text = { L26- Box(modifier = Modifier.heightIn(max = 400.dp)) { L27- PrivacyPolicyContent( L28- modifier = Modifier.verticalScroll(rememberScrollState()), L29- ) L30- } L31- }, L32- confirmButton = { L33- TextButton(onClick = onDismissRequest) { L34: Text(text = stringResource(R.string.action_dismiss)) L35- } L36- }, L37- ) L38- } L39- --- File: app/src/main/java/com/servicebook/ui/components/UpgradeDialog.kt L50- } L51- } L52- L53- @Composable L54- fun PurchasePendingDialog( L55- onDismissRequest: () -> Unit, L56- modifier: Modifier = Modifier, L57- ) { L58- AlertDialog( L59- onDismissRequest = onDismissRequest, L60- title = { Text(text = stringResource(R.string.purchase_pending_title)) }, L61- text = { Text(text = stringResource(R.string.purchase_pending_message)) }, L62- confirmButton = {}, L63- dismissButton = { L64- TextButton(onClick = onDismissRequest) { L65: Text(stringResource(R.string.action_dismiss)) L66- } L67- }, L68- modifier = modifier.testTag("purchase-pending-dialog"), L69- ) L70- } L71- --- File: app/src/main/res/values/strings.xml L153- L154- Help improve the app L155- Enable L156- Not now L157- L158- L159- Welcome to Service Book L160- Choose a folder where your vehicle data will be stored. You own this data — back it up or move it any time. L161- Choose storage folder L162- Complete Setup L163- Step 2 of 2 L164- L165- L166- Save L167- OK L168: Got it L169- Cancel L170- Delete L171- Confirm L172- Edit L173- Back L174- More options L175- This field is required L176- Enter a valid 4-digit year L177- Enter a positive number L178- Odometer reading too high (max 9,999,999) L179- Enter a valid amount (max 999,999.99) L180- Max 2 decimal places allowed L181- A vehicle with this VIN already exists L182- %1$s, required L183- km ---