Changes the language from Hide to Block to facilitate PlayStore approvals.

This commit is contained in:
Vitor Pamplona
2023-02-21 09:43:34 -05:00
parent 92b1744c35
commit bc2ef6500a
2 changed files with 2 additions and 2 deletions

View File

@@ -555,7 +555,7 @@ fun NoteDropDownMenu(note: Note, popupExpanded: Boolean, onDismiss: () -> Unit,
}
Divider()
DropdownMenuItem(onClick = { note.author?.let { accountViewModel.hide(it, context) }; onDismiss() }) {
Text("Hide User")
Text("Block & Hide User")
}
Divider()
DropdownMenuItem(onClick = {

View File

@@ -781,7 +781,7 @@ fun UserProfileDropDownMenu(user: User, popupExpanded: Boolean, onDismiss: () ->
}
} else {
DropdownMenuItem(onClick = { user.let { accountViewModel.hide(it, context) }; onDismiss() }) {
Text("Hide User")
Text("Block & Hide User")
}
}
Divider()