Merge pull request #3057 from nextcloud/issue-3019-empty-subline

Shows an empty subline when the last message expires instead of "No messages yet"
This commit is contained in:
Andy Scherzinger 2023-05-27 09:17:57 +02:00 committed by GitHub
commit bd52d9d466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -256,7 +256,7 @@ class ConversationItem(
}
} else {
holder.binding.dialogDate.visibility = View.GONE
holder.binding.dialogLastMessage.setText(R.string.nc_no_messages_yet)
holder.binding.dialogLastMessage.text = ""
}
}

View File

@ -337,7 +337,6 @@ How to translate with transifex:
<string name="nc_conversation_menu_video_call">Video call</string>
<string name="nc_conversation_menu_conversation_info">Conversation info</string>
<string name="nc_new_messages">Unread messages</string>
<string name="nc_no_messages_yet">No messages yet</string>
<string name="nc_sent_a_link" formatted="true">%1$s sent a link.</string>
<string name="nc_sent_a_gif" formatted="true">%1$s sent a GIF.</string>
<string name="nc_sent_an_attachment" formatted="true">%1$s sent an attachment.</string>