Merge pull request #499 from akiomik/extract-block-report-resource

Extract string resource for Block / Report
This commit is contained in:
Vitor Pamplona
2023-07-13 12:55:33 -04:00
committed by GitHub
4 changed files with 5 additions and 2 deletions
@@ -427,7 +427,7 @@ fun NoteDropDownMenu(note: Note, popupExpanded: Boolean, onDismiss: () -> Unit,
}
} else {
DropdownMenuItem(onClick = { reportDialogShowing = true }) {
Text("Block / Report")
Text(stringResource(R.string.block_report))
}
}
Divider()