Skip to content

Commit

Permalink
handling the history visibility flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Velin92 committed Dec 17, 2024
1 parent 2b82b94 commit f7a7e69
Show file tree
Hide file tree
Showing 11 changed files with 485 additions and 57 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"NSFaceIDUsageDescription" = "Face ID is used to access your app.";
"NSLocationWhenInUseUsageDescription" = "Grant location access so that Element X can share your location.";
"NSMicrophoneUsageDescription" = "To record and send messages with audio, Element X needs to access the microphone.";
"NSPhotoLibraryUsageDescription" = "Allows saving photos and videos to your library.";
"NSPhotoLibraryUsageDescription" = "This lets you save images and videos to your photo library.";
5 changes: 5 additions & 0 deletions ElementX/Resources/Localizations/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@
"dialog_permission_microphone_description_ios" = "Grant access so you can record and send messages with audio.";
"dialog_permission_microphone_title_ios" = "%1$@ needs permission to access your microphone.";
"dialog_permission_notification" = "In order to let the application display notifications, please grant the permission in the system settings.";
"dialog_permission_photo_library_title_ios" = "%1$@ does not have access to your photo library.";
"dialog_title_confirmation" = "Confirmation";
"dialog_title_warning" = "Warning";
"dialog_unsaved_changes_description_ios" = "Your changes won’t be saved";
Expand Down Expand Up @@ -448,6 +449,10 @@
"screen_security_and_privacy_room_access_invite_only_option_description" = "People can only join if they are invited";
"screen_security_and_privacy_room_access_invite_only_option_title" = "Invite only";
"screen_security_and_privacy_room_access_section_title" = "Room access";
"screen_security_and_privacy_room_history_anyone_option_title" = "Anyone";
"screen_security_and_privacy_room_history_section_header" = "Who can read history";
"screen_security_and_privacy_room_history_since_invite_option_title" = "Members only since they were invited";
"screen_security_and_privacy_room_history_since_selecting_option_title" = "Members only since selecting this option";
"screen_security_and_privacy_title" = "Security & privacy";
"screen_timeline_item_menu_send_failure_changed_identity" = "Message not sent because %1$@’s verified identity has changed.";
"screen_timeline_item_menu_send_failure_unsigned_device" = "Message not sent because %1$@ has not verified all devices.";
Expand Down
12 changes: 12 additions & 0 deletions ElementX/Sources/Generated/Strings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,10 @@ internal enum L10n {
}
/// In order to let the application display notifications, please grant the permission in the system settings.
internal static var dialogPermissionNotification: String { return L10n.tr("Localizable", "dialog_permission_notification") }
/// %1$@ does not have access to your photo library.
internal static func dialogPermissionPhotoLibraryTitleIos(_ p1: Any) -> String {
return L10n.tr("Localizable", "dialog_permission_photo_library_title_ios", String(describing: p1))
}
/// Confirmation
internal static var dialogTitleConfirmation: String { return L10n.tr("Localizable", "dialog_title_confirmation") }
/// Error
Expand Down Expand Up @@ -2182,6 +2186,14 @@ internal enum L10n {
internal static var screenSecurityAndPrivacyRoomAccessInviteOnlyOptionTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_access_invite_only_option_title") }
/// Room access
internal static var screenSecurityAndPrivacyRoomAccessSectionTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_access_section_title") }
/// Anyone
internal static var screenSecurityAndPrivacyRoomHistoryAnyoneOptionTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_history_anyone_option_title") }
/// Who can read history
internal static var screenSecurityAndPrivacyRoomHistorySectionHeader: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_history_section_header") }
/// Members only since they were invited
internal static var screenSecurityAndPrivacyRoomHistorySinceInviteOptionTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_history_since_invite_option_title") }
/// Members only since selecting this option
internal static var screenSecurityAndPrivacyRoomHistorySinceSelectingOptionTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_room_history_since_selecting_option_title") }
/// Security & privacy
internal static var screenSecurityAndPrivacyTitle: String { return L10n.tr("Localizable", "screen_security_and_privacy_title") }
/// Change account provider
Expand Down
Loading

0 comments on commit f7a7e69

Please sign in to comment.