diff --git a/ElementX/Resources/Localizations/en.lproj/Localizable.strings b/ElementX/Resources/Localizations/en.lproj/Localizable.strings index 02f55732e..76b3a0231 100644 --- a/ElementX/Resources/Localizations/en.lproj/Localizable.strings +++ b/ElementX/Resources/Localizations/en.lproj/Localizable.strings @@ -540,7 +540,7 @@ "screen_room_timeline_upgraded_room_action" = "See old messages"; "screen_room_timeline_upgraded_room_message" = "This room is a continuation of another room"; "screen_room_timeline_reactions_show_reactions_summary" = "Show reactions summary"; -"screen_roomlist_remove_all_filters" = "Remove all filters"; +"screen_roomlist_clear_filters" = "Clear filters"; "screen_roomlist_tombstoned_room_description" = "This room has been upgraded"; "screen_security_and_privacy_add_room_address_action" = "Add room address"; "screen_security_and_privacy_ask_to_join_option_description" = "Anyone can ask to join the room but an administrator or moderator will have to accept the request."; diff --git a/ElementX/Sources/Generated/Strings.swift b/ElementX/Sources/Generated/Strings.swift index e4af93420..2e9abfe48 100644 --- a/ElementX/Sources/Generated/Strings.swift +++ b/ElementX/Sources/Generated/Strings.swift @@ -2422,6 +2422,8 @@ internal enum L10n { internal static var screenRoomVoiceMessageTooltip: String { return L10n.tr("Localizable", "screen_room_voice_message_tooltip") } /// Create a new conversation or room internal static var screenRoomlistA11yCreateMessage: String { return L10n.tr("Localizable", "screen_roomlist_a11y_create_message") } + /// Clear filters + internal static var screenRoomlistClearFilters: String { return L10n.tr("Localizable", "screen_roomlist_clear_filters") } /// Get started by messaging someone. internal static var screenRoomlistEmptyMessage: String { return L10n.tr("Localizable", "screen_roomlist_empty_message") } /// No chats yet. @@ -2464,8 +2466,6 @@ internal enum L10n { internal static var screenRoomlistMarkAsRead: String { return L10n.tr("Localizable", "screen_roomlist_mark_as_read") } /// Mark as unread internal static var screenRoomlistMarkAsUnread: String { return L10n.tr("Localizable", "screen_roomlist_mark_as_unread") } - /// Remove all filters - internal static var screenRoomlistRemoveAllFilters: String { return L10n.tr("Localizable", "screen_roomlist_remove_all_filters") } /// This room has been upgraded internal static var screenRoomlistTombstonedRoomDescription: String { return L10n.tr("Localizable", "screen_roomlist_tombstoned_room_description") } /// Add room address diff --git a/ElementX/Sources/Screens/HomeScreen/View/Filters/RoomListFiltersView.swift b/ElementX/Sources/Screens/HomeScreen/View/Filters/RoomListFiltersView.swift index 5f11e515a..0902b0112 100644 --- a/ElementX/Sources/Screens/HomeScreen/View/Filters/RoomListFiltersView.swift +++ b/ElementX/Sources/Screens/HomeScreen/View/Filters/RoomListFiltersView.swift @@ -64,7 +64,7 @@ struct RoomListFiltersView: View { .font(.system(size: 24)) .foregroundColor(.compound.bgActionPrimaryRest) }) - .accessibilityLabel(L10n.screenRoomlistRemoveAllFilters) + .accessibilityLabel(L10n.screenRoomlistClearFilters) } private func getBinding(for filter: RoomListFilter, scrollViewProxy: ScrollViewProxy) -> Binding {