Update string translation

This commit is contained in:
Alier 2023-06-26 16:27:23 +06:00
parent 5169539a88
commit a21662baef
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ class NotificationHelper(private val context: Context) {
builder.addAction(R.drawable.ic_check_vector, context.getString(R.string.mark_as_read), markAsReadPendingIntent)
.setChannelId(NOTIFICATION_CHANNEL)
if (isNoReplySms) {
builder.addAction(R.drawable.ic_delete_vector, context.getString(R.string.delete_messages), deleteSmsPendingIntent)
builder.addAction(R.drawable.ic_delete_vector, context.getString(R.string.delete), deleteSmsPendingIntent)
.setChannelId(NOTIFICATION_CHANNEL)
}
notificationManager.notify(notificationId, builder.build())