Skip to content

Commit f0d45d4

Browse files
committed
updated strings
1 parent 95a96b2 commit f0d45d4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ElementX/Resources/Localizations/en.lproj/Localizable.strings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,6 @@
517517
"screen_resolve_send_failure_you_unsigned_device_subtitle" = "One or more of your devices are unverified. You can send the message anyway, or you can cancel for now and try again later after you have verified all of your devices.";
518518
"screen_resolve_send_failure_you_unsigned_device_title" = "Your message was not sent because you have not verified one or more of your devices";
519519
"screen_room_event_pill" = "Message in %1$@";
520-
"screen_room_grouped_view_states_expand" = "Expand";
521-
"screen_room_grouped_view_states_reduce" = "Reduce";
522520
"screen_room_mentions_at_room_subtitle" = "Notify the whole room";
523521
"screen_room_multiple_knock_requests_view_all_button_title" = "View all";
524522
"screen_room_pinned_banner_indicator" = "%1$@ of %2$@";
@@ -530,6 +528,8 @@
530528
"screen_room_details_pinned_events_row_title" = "Pinned messages";
531529
"screen_room_details_profile_row_title" = "Profile";
532530
"screen_room_details_requests_to_join_title" = "Requests to join";
531+
"screen_room_grouped_state_events_expand" = "Expand";
532+
"screen_room_grouped_state_events_reduce" = "Reduce";
533533
"screen_room_timeline_tombstoned_room_action" = "Jump to new room";
534534
"screen_room_timeline_tombstoned_room_message" = "This room has been replaced and is no longer active";
535535
"screen_room_timeline_upgraded_room_action" = "See old messages";

ElementX/Sources/Generated/Strings.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2183,9 +2183,9 @@ internal enum L10n {
21832183
return L10n.tr("Localizable", "screen_room_event_pill", String(describing: p1))
21842184
}
21852185
/// Expand
2186-
internal static var screenRoomGroupedViewStatesExpand: String { return L10n.tr("Localizable", "screen_room_grouped_view_states_expand") }
2186+
internal static var screenRoomGroupedStateEventsExpand: String { return L10n.tr("Localizable", "screen_room_grouped_state_events_expand") }
21872187
/// Reduce
2188-
internal static var screenRoomGroupedViewStatesReduce: String { return L10n.tr("Localizable", "screen_room_grouped_view_states_reduce") }
2188+
internal static var screenRoomGroupedStateEventsReduce: String { return L10n.tr("Localizable", "screen_room_grouped_state_events_reduce") }
21892189
/// Would you like to invite them back?
21902190
internal static var screenRoomInviteAgainAlertMessage: String { return L10n.tr("Localizable", "screen_room_invite_again_alert_message") }
21912191
/// You are alone in this chat

ElementX/Sources/Screens/Timeline/View/TimelineItemViews/CollapsibleRoomTimelineView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ struct CollapsibleRoomTimelineView: View {
3838
HStack(alignment: .center, spacing: 8) {
3939
Text(L10n.screenRoomTimelineStateChanges(timelineItem.items.count))
4040
Text(Image(systemName: "chevron.forward"))
41-
.accessibilityLabel(isExpanded ? L10n.screenRoomGroupedViewStatesReduce : L10n.screenRoomGroupedViewStatesExpand)
41+
.accessibilityLabel(isExpanded ? L10n.screenRoomGroupedStateEventsReduce : L10n.screenRoomGroupedStateEventsExpand)
4242
.rotationEffect(.degrees(isExpanded ? 90 : 0))
4343
.animation(.elementDefault, value: isExpanded)
4444
}

0 commit comments

Comments
 (0)