Fix unreads typo.

This commit is contained in:
mtang-signal
2024-10-17 14:56:42 -07:00
committed by Greyson Parrelli
parent bebc5a55bb
commit 26c40fb86a
3 changed files with 3 additions and 3 deletions

View File

@@ -162,7 +162,7 @@ fun FoldersScreen(
state.suggestedFolders.forEach { chatFolder ->
when (chatFolder.folderType) {
ChatFolderRecord.FolderType.UNREAD -> {
val title: String = stringResource(R.string.ChatFoldersFragment__unreads)
val title: String = stringResource(R.string.ChatFoldersFragment__unread)
FolderRow(
icon = R.drawable.symbol_chat_badge_24,
title = title,

View File

@@ -79,7 +79,7 @@ class ChatFoldersViewModel : ViewModel() {
if (showUnreadSuggestion) {
suggestions.add(
ChatFolderRecord(
name = context.getString(R.string.ChatFoldersFragment__unreads),
name = context.getString(R.string.ChatFoldersFragment__unread),
showUnread = true,
showIndividualChats = true,
showGroupChats = true,

View File

@@ -5084,7 +5084,7 @@
<!-- Header for section showing suggested chat folders for users to have -->
<string name="ChatFoldersFragment__suggested_folders">Suggested folders</string>
<!-- Name of a chat folder that contains all chats that currently have unread messages -->
<string name="ChatFoldersFragment__unreads">Unreads</string>
<string name="ChatFoldersFragment__unread">Unread</string>
<!-- Description of the suggested unread chat folder -->
<string name="ChatFoldersFragment__unread_messages">Unread messages from all chats</string>
<!-- Name of a chat folder that contains all 1:1 (individual) chats -->