Release chat folders to internal users.

This commit is contained in:
Michelle Tang
2024-10-11 09:38:53 -07:00
committed by Greyson Parrelli
parent e5c122d972
commit c4fc32988c
64 changed files with 3166 additions and 251 deletions

View File

@@ -369,6 +369,8 @@
<string name="ContactsCursorLoader__chats">Chats</string>
<!-- Header for conversation search section labeled "Messages" -->
<string name="ContactsCursorLoader__messages">Messages</string>
<!-- Header for conversation search section labeled "Chat types" -->
<string name="ContactsCursorLoader__chat_types">Chat types</string>
<!-- ContactsDatabase -->
<string name="ContactsDatabase_message_s">Message %s</string>
@@ -5035,6 +5037,107 @@
<!-- ChatsSettingsFragment -->
<string name="ChatsSettingsFragment__keyboard">Keyboard</string>
<string name="ChatsSettingsFragment__send_with_enter">Send with enter</string>
<!-- Heading within chats settings for chat folders -->
<string name="ChatsSettingsFragment__chat_folders">Chat folders</string>
<!-- Option within settings to add a new chat folder -->
<string name="ChatsSettingsFragment__add_chat_folder">Add a chat folder</string>
<!-- ChatFoldersFragment -->
<!-- Description of what chat folders are -->
<string name="ChatFoldersFragment__organize_your_chats">Organize your chats into folders and quickly switch between them on your chat list.</string>
<!-- Header for section showing current chat folders -->
<string name="ChatFoldersFragment__folders">Folders</string>
<!-- Text next to button that allows users to create a new chat folder -->
<string name="ChatFoldersFragment__create_a_folder">Create a folder</string>
<!-- Name of a chat folder that represents the folder containing all chats -->
<string name="ChatFoldersFragment__all_chats">All chats</string>
<!-- 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>
<!-- 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 -->
<string name="ChatFoldersFragment__one_on_one_chats">1:1 chats</string>
<!-- Description of the suggested 1:1 chat folder -->
<string name="ChatFoldersFragment__only_direct_messages">Only messages from direct chats</string>
<!-- Name of a chat folder that contains all groups chats -->
<string name="ChatFoldersFragment__groups">Groups</string>
<!-- Description of the suggested group chat folder -->
<string name="ChatFoldersFragment__only_group_messages">Only message from group chats</string>
<!-- Button text to add a suggested folder to a user's chat folders -->
<string name="ChatFoldersFragment__add">Add</string>
<!-- Toast shown when a folder gets added where %s is the name of the folder -->
<string name="ChatFoldersFragment__folder_added">%1$s folder added.</string>
<!-- Text describing the number of chat types in a folder -->
<plurals name="ChatFoldersFragment__d_chat_types">
<item quantity="one">%1$d chat type</item>
<item quantity="other">%1$d chat types</item>
</plurals>
<!-- Text describing the number of chat in a folder -->
<plurals name="ChatFoldersFragment__d_chats">
<item quantity="one">%1$d chat</item>
<item quantity="other">%1$d chats</item>
</plurals>
<!-- Text describing the number of chats that are excluded in a folder -->
<plurals name="ChatFoldersFragment__d_chats_excluded">
<item quantity="one">%1$d chat excluded</item>
<item quantity="other">%1$d chats excluded</item>
</plurals>
<!-- CreateFoldersFragment -->
<!-- Title of the screen when creating a folder, displayed in the toolbar -->
<string name="CreateFoldersFragment__create_a_folder">Create a folder</string>
<!-- Hint text shown in text field to enter a name for the folder -->
<string name="CreateFoldersFragment__folder_name">Folder name (required)</string>
<!-- Section title representing what chats are included in the folder -->
<string name="CreateFoldersFragment__included_chats">Included chats</string>
<!-- Text next to button that allows users to add chats to the folder -->
<string name="CreateFoldersFragment__add_chats">Add chats</string>
<!-- Description explaining the purpose of the included chats section -->
<string name="CreateFoldersFragment__choose_chats_you_want">Choose chats that you want to appear in this folder.</string>
<!-- Section title representing what chats are excluded from the folder -->
<string name="CreateFoldersFragment__exceptions">Exceptions</string>
<!-- Text next to button that allows users to exclude chats from the folder -->
<string name="CreateFoldersFragment__exclude_chats">Exclude chats</string>
<!-- Description explaining the purpose of the excluded chats section -->
<string name="CreateFoldersFragment__choose_chats_you_do_not_want">Choose chats that you do not want to appear in this folder.</string>
<!-- Toggle switch for folder to show unread chats -->
<string name="CreateFoldersFragment__only_show_unread_chats">Only show unread chats</string>
<!-- Explanation of unread toggle option -->
<string name="CreateFoldersFragment__when_enabled_only_chats">When enabled, only chats with unread messages will be shown in this folder.</string>
<!-- Toggle switch to display muted chats in chat folders -->
<string name="CreateFoldersFragment__include_muted_chats">Include muted chats</string>
<!-- Button text to create a folder -->
<string name="CreateFoldersFragment__create">Create</string>
<!-- Alert dialog title to create a chat folder -->
<string name="CreateFoldersFragment__create_folder_title">Create folder?</string>
<!-- Alert dialog description when creating a chat folder where %s is the name of the folder -->
<string name="CreateFoldersFragment__do_you_want_to_create">Do you want to create the chat folder \"%1$s\"?</string>
<!-- Alert dialog confirmation button text to save the changes -->
<string name="CreateFoldersFragment__create_folder">Create folder</string>
<!-- Section title shown when editing an existing folder -->
<string name="CreateFoldersFragment__edit_folder">Edit folder</string>
<!-- Button text to save the changes to a folder after it has been edited -->
<string name="CreateFoldersFragment__save">Save</string>
<!-- Alert dialog title to save changes made to the current folder -->
<string name="CreateFoldersFragment__save_changes_title">Save changes?</string>
<!-- Alert dialog description when saving a folder that has had changes made to it -->
<string name="CreateFoldersFragment__do_you_want_to_save">Do you want to save the changes you\'ve made to this chat folder?</string>
<!-- Alert dialog confirmation button text to save the changes -->
<string name="CreateFoldersFragment__save_changes">Save changes</string>
<!-- Alert dialog button to dismiss the dialog and discard any changes -->
<string name="CreateFoldersFragment__discard">Discard</string>
<!-- Text that when pressed will delete the current folder -->
<string name="CreateFoldersFragment__delete_folder">Delete folder</string>
<!-- Alert dialog title to delete the current folder -->
<string name="CreateFoldersFragment__delete_this_chat_folder">Delete this chat folder?</string>
<!-- ChooseChatsFragment -->
<!-- Section title representing chat types that can be added to the folder -->
<string name="ChooseChatsFragment__chat_types">Chat types</string>
<!-- Done button label to save selected chats to folder -->
<string name="ChooseChatsFragment__done">Done</string>
<!-- NotificationsSettingsFragment -->
<string name="NotificationsSettingsFragment__messages">Messages</string>