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

pull/147/head
Vitor Pamplona 2023-02-21 09:43:34 -05:00
rodzic 92b1744c35
commit bc2ef6500a
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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 = {

Wyświetl plik

@ -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()