mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-03-01 06:07:37 +00:00
Fix unreads typo.
This commit is contained in:
committed by
Greyson Parrelli
parent
bebc5a55bb
commit
26c40fb86a
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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 -->
|
||||
|
||||
Reference in New Issue
Block a user