Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit 263bd1e

Browse files
committed
Merge branch 'release/0.16.2/master'
2 parents e054ca0 + 73ebfcc commit 263bd1e

File tree

57 files changed

+853
-519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+853
-519
lines changed

CHANGES.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## Changes in 0.16.2 (2021-09-24)
2+
3+
✨ Features
4+
5+
- Added device de/rehydration supporting flows. ([#4255](https://github.com/vector-im/element-ios/issues/4255))
6+
- Support for space link. ([#4498](https://github.com/vector-im/element-ios/issues/4498))
7+
- Add suggested rooms and support for suggested room selection to the list of recent cell data ([#4501](https://github.com/vector-im/element-ios/issues/4501))
8+
- moved space filtering to MatrixKit. ([#4509](https://github.com/vector-im/element-ios/issues/4509))
9+
- Tweaked `MXKRoomMemberDetailsViewController` so we can hide leave option ([#4682](https://github.com/vector-im/element-ios/issues/4682))
10+
11+
🙌 Improvements
12+
13+
- Upgrade MatrixSDK version ([v0.20.2](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.20.2)).
14+
15+
🐛 Bugfixes
16+
17+
- MXKAppSettings: Return matrix.to when firstURLDetectionIgnoredHosts is nil, and store an empty array when setting nil. ([#4826](https://github.com/vector-im/element-ios/issues/4826))
18+
19+
⚠️ API Changes
20+
21+
- Dropped support for iOS versions 11 and lower. ([#4693](https://github.com/vector-im/element-ios/issues/4693))
22+
- Exposed more room joining result types in the completion handler. ([#4830](https://github.com/vector-im/element-ios/issues/4830))
23+
24+
125
## Changes in 0.16.1 (2021-09-16)
226

327
🙌 Improvements

MatrixKit.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "MatrixKit"
4-
s.version = "0.16.1"
4+
s.version = "0.16.2"
55
s.summary = "The Matrix reusable UI library for iOS based on MatrixSDK."
66

77
s.description = <<-DESC
@@ -15,15 +15,15 @@ Pod::Spec.new do |s|
1515
s.author = { "matrix.org" => "[email protected]" }
1616
s.social_media_url = "http://twitter.com/matrixdotorg"
1717

18-
s.platform = :ios, "9.0"
18+
s.platform = :ios, "12.1"
1919

2020
s.source = { :git => "https://github.com/matrix-org/matrix-ios-kit.git", :tag => "v#{s.version}" }
2121

2222
s.requires_arc = true
2323

2424
s.swift_version = '5.0'
2525

26-
s.dependency 'MatrixSDK', "= 0.20.1"
26+
s.dependency 'MatrixSDK', "= 0.20.2"
2727
s.dependency 'HPGrowingTextView', '~> 1.1'
2828
s.dependency 'libPhoneNumber-iOS', '~> 0.9.13'
2929
s.dependency 'DTCoreText', '~> 1.6.25'

MatrixKit.xcodeproj/project.pbxproj

+10-14
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
32FBDAF81E4484C40033C519 /* MXKEncryptionKeysImportView.m in Sources */ = {isa = PBXBuildFile; fileRef = 32FBDAF71E4484C40033C519 /* MXKEncryptionKeysImportView.m */; };
4848
32FBDAFB1E44B0FC0033C519 /* MXKEncryptionKeysExportView.m in Sources */ = {isa = PBXBuildFile; fileRef = 32FBDAFA1E44B0FC0033C519 /* MXKEncryptionKeysExportView.m */; };
4949
3A1293A825801D9400F3474B /* MXKPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A1293A625801D9400F3474B /* MXKPreviewViewController.m */; };
50+
3AF85F9726FCD75700A9E67B /* MXKActivityHandlingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF85F9626FCC35D00A9E67B /* MXKActivityHandlingViewController.m */; };
5051
4F236C27EC459185548BEF4F /* Pods_MatrixKitSamplePods_MatrixKitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B455B95A7B9ECAD75BA21E12 /* Pods_MatrixKitSamplePods_MatrixKitTests.framework */; };
5152
550A36BD1DE484DB005C1647 /* EncryptedAttachmentsTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 550A36BC1DE484DB005C1647 /* EncryptedAttachmentsTest.m */; };
5253
71352D551C0ED240001D50B0 /* MXKRoomSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71352D531C0ED240001D50B0 /* MXKRoomSettingsViewController.m */; };
@@ -194,7 +195,6 @@
194195
F09A66671FD812CA004B13B5 /* MXKGroupCellData.m in Sources */ = {isa = PBXBuildFile; fileRef = F09A66661FD812CA004B13B5 /* MXKGroupCellData.m */; };
195196
F09E288E1AC1FEDA00C51E44 /* MXKImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F09E288B1AC1FEDA00C51E44 /* MXKImageView.m */; };
196197
F09E288F1AC1FEDA00C51E44 /* MXKPieChartView.m in Sources */ = {isa = PBXBuildFile; fileRef = F09E288D1AC1FEDA00C51E44 /* MXKPieChartView.m */; };
197-
F0A8955E1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A8955D1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.m */; };
198198
F0AD3CC21B288C05002E0899 /* MXKInterleavedRecentsDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F0AD3CBF1B288C05002E0899 /* MXKInterleavedRecentsDataSource.m */; };
199199
F0AD3CC71B289441002E0899 /* MXKInterleavedRecentTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F0AD3CC51B289441002E0899 /* MXKInterleavedRecentTableViewCell.m */; };
200200
F0AD3CC81B289441002E0899 /* MXKInterleavedRecentTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F0AD3CC61B289441002E0899 /* MXKInterleavedRecentTableViewCell.xib */; };
@@ -352,6 +352,9 @@
352352
392A579537BBF28A9436C420 /* Pods-MatrixKitSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MatrixKitSample.release.xcconfig"; path = "Pods/Target Support Files/Pods-MatrixKitSample/Pods-MatrixKitSample.release.xcconfig"; sourceTree = "<group>"; };
353353
3A1293A625801D9400F3474B /* MXKPreviewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MXKPreviewViewController.m; sourceTree = "<group>"; };
354354
3A1293A725801D9400F3474B /* MXKPreviewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MXKPreviewViewController.h; sourceTree = "<group>"; };
355+
3AF85F9426FCC0B100A9E67B /* MXKViewControllerActivityHandling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MXKViewControllerActivityHandling.h; sourceTree = "<group>"; };
356+
3AF85F9526FCC35D00A9E67B /* MXKActivityHandlingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MXKActivityHandlingViewController.h; sourceTree = "<group>"; };
357+
3AF85F9626FCC35D00A9E67B /* MXKActivityHandlingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MXKActivityHandlingViewController.m; sourceTree = "<group>"; };
355358
550A36BC1DE484DB005C1647 /* EncryptedAttachmentsTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncryptedAttachmentsTest.m; sourceTree = "<group>"; };
356359
5537B7A941FDD5CF92368345 /* Pods-MatrixKitSamplePods-MatrixKitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MatrixKitSamplePods-MatrixKitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MatrixKitSamplePods-MatrixKitTests/Pods-MatrixKitSamplePods-MatrixKitTests.debug.xcconfig"; sourceTree = "<group>"; };
357360
5891CE7965783A3890D40ED9 /* Pods_MatrixKitSamplePods_MatrixKitSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MatrixKitSamplePods_MatrixKitSample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -605,8 +608,6 @@
605608
F09E288B1AC1FEDA00C51E44 /* MXKImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MXKImageView.m; sourceTree = "<group>"; };
606609
F09E288C1AC1FEDA00C51E44 /* MXKPieChartView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MXKPieChartView.h; sourceTree = "<group>"; };
607610
F09E288D1AC1FEDA00C51E44 /* MXKPieChartView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MXKPieChartView.m; sourceTree = "<group>"; };
608-
F0A8955C1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MatrixKit.h"; sourceTree = "<group>"; };
609-
F0A8955D1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MatrixKit.m"; sourceTree = "<group>"; };
610611
F0AD3CBE1B288C05002E0899 /* MXKInterleavedRecentsDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MXKInterleavedRecentsDataSource.h; sourceTree = "<group>"; };
611612
F0AD3CBF1B288C05002E0899 /* MXKInterleavedRecentsDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MXKInterleavedRecentsDataSource.m; sourceTree = "<group>"; };
612613
F0AD3CC41B289441002E0899 /* MXKInterleavedRecentTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MXKInterleavedRecentTableViewCell.h; sourceTree = "<group>"; };
@@ -863,6 +864,9 @@
863864
F0026B651C91EED1001D2C04 /* MXKWebViewViewController.m */,
864865
3A1293A725801D9400F3474B /* MXKPreviewViewController.h */,
865866
3A1293A625801D9400F3474B /* MXKPreviewViewController.m */,
867+
3AF85F9426FCC0B100A9E67B /* MXKViewControllerActivityHandling.h */,
868+
3AF85F9526FCC35D00A9E67B /* MXKActivityHandlingViewController.h */,
869+
3AF85F9626FCC35D00A9E67B /* MXKActivityHandlingViewController.m */,
866870
);
867871
path = Controllers;
868872
sourceTree = "<group>";
@@ -1314,8 +1318,6 @@
13141318
F07E18111ABC563900DE3766 /* Categories */ = {
13151319
isa = PBXGroup;
13161320
children = (
1317-
F0A8955C1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.h */,
1318-
F0A8955D1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.m */,
13191321
F04F78331F17A1B60039485E /* UIAlertController+MatrixKit.h */,
13201322
F04F78341F17A1B60039485E /* UIAlertController+MatrixKit.m */,
13211323
32D9F4E021D54A08008007F2 /* UIViewController+MatrixKit.h */,
@@ -1880,6 +1882,7 @@
18801882
F06E76811AF0FEB100980E5A /* MXKAuthenticationViewController.m in Sources */,
18811883
F0F148C61AB31240005F5D4A /* MXKTools.m in Sources */,
18821884
3230A3721ACA835400CC57F5 /* MXKSampleJSQMessageMediaData.m in Sources */,
1885+
3AF85F9726FCD75700A9E67B /* MXKActivityHandlingViewController.m in Sources */,
18831886
F0868E0D1B18FC01004CBE80 /* MXKRoomCreationView.m in Sources */,
18841887
CE14CA671E80122600E329A3 /* MXKAttachmentInteractionController.m in Sources */,
18851888
B125D10C22D7414400570CA4 /* MXKVideoThumbnailGenerator.swift in Sources */,
@@ -1966,7 +1969,6 @@
19661969
F0B0ECC41B14B16C005EB20D /* MXKRoomTitleView.m in Sources */,
19671970
F09A66641FD8061D004B13B5 /* MXKSessionGroupsDataSource.m in Sources */,
19681971
B12C56F22396D75500FAC6DE /* UITextView+MatrixKit.m in Sources */,
1969-
F0A8955E1F7A55DF00BD6C2A /* UIScrollView+MatrixKit.m in Sources */,
19701972
F095E50F1B25899F009606CE /* MXKContactManager.m in Sources */,
19711973
F09617C31DE881D800093E9D /* MXKEncryptionInfoView.m in Sources */,
19721974
F0CE56EB1AA8BB5E003BE77A /* MXKSampleMainTableViewController.m in Sources */,
@@ -2072,7 +2074,6 @@
20722074
isa = XCBuildConfiguration;
20732075
baseConfigurationReference = 5537B7A941FDD5CF92368345 /* Pods-MatrixKitSamplePods-MatrixKitTests.debug.xcconfig */;
20742076
buildSettings = {
2075-
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
20762077
BUNDLE_LOADER = "$(TEST_HOST)";
20772078
CLANG_ANALYZER_NONNULL = YES;
20782079
CLANG_ENABLE_MODULES = YES;
@@ -2082,7 +2083,6 @@
20822083
ENABLE_TESTABILITY = YES;
20832084
GCC_NO_COMMON_BLOCKS = YES;
20842085
INFOPLIST_FILE = MatrixKitTests/Info.plist;
2085-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
20862086
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
20872087
PRODUCT_BUNDLE_IDENTIFIER = org.matrix.MatrixKitTests;
20882088
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -2097,7 +2097,6 @@
20972097
isa = XCBuildConfiguration;
20982098
baseConfigurationReference = 1099FE41E4156DB223718DB2 /* Pods-MatrixKitSamplePods-MatrixKitTests.release.xcconfig */;
20992099
buildSettings = {
2100-
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
21012100
BUNDLE_LOADER = "$(TEST_HOST)";
21022101
CLANG_ANALYZER_NONNULL = YES;
21032102
CLANG_ENABLE_MODULES = YES;
@@ -2107,7 +2106,6 @@
21072106
DEVELOPMENT_TEAM = 7J4U792NQT;
21082107
GCC_NO_COMMON_BLOCKS = YES;
21092108
INFOPLIST_FILE = MatrixKitTests/Info.plist;
2110-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
21112109
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
21122110
PRODUCT_BUNDLE_IDENTIFIER = org.matrix.MatrixKitTests;
21132111
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -2164,7 +2162,7 @@
21642162
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
21652163
GCC_WARN_UNUSED_FUNCTION = YES;
21662164
GCC_WARN_UNUSED_VARIABLE = YES;
2167-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
2165+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
21682166
MTL_ENABLE_DEBUG_INFO = YES;
21692167
ONLY_ACTIVE_ARCH = YES;
21702168
SDKROOT = iphoneos;
@@ -2212,7 +2210,7 @@
22122210
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
22132211
GCC_WARN_UNUSED_FUNCTION = YES;
22142212
GCC_WARN_UNUSED_VARIABLE = YES;
2215-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
2213+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
22162214
MTL_ENABLE_DEBUG_INFO = NO;
22172215
SDKROOT = iphoneos;
22182216
TARGETED_DEVICE_FAMILY = "1,2";
@@ -2230,7 +2228,6 @@
22302228
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
22312229
DEVELOPMENT_TEAM = 7J4U792NQT;
22322230
INFOPLIST_FILE = "$(SRCROOT)/Samples/MatrixKitSample/Info.plist";
2233-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
22342231
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
22352232
PRODUCT_BUNDLE_IDENTIFIER = "org.matrix.$(PRODUCT_NAME:rfc1034identifier)";
22362233
PRODUCT_MODULE_NAME = MatrixKit;
@@ -2251,7 +2248,6 @@
22512248
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
22522249
DEVELOPMENT_TEAM = 7J4U792NQT;
22532250
INFOPLIST_FILE = "$(SRCROOT)/Samples/MatrixKitSample/Info.plist";
2254-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
22552251
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
22562252
PRODUCT_BUNDLE_IDENTIFIER = "org.matrix.$(PRODUCT_NAME:rfc1034identifier)";
22572253
PRODUCT_MODULE_NAME = MatrixKit;

MatrixKit/Assets/MatrixKitAssets.bundle/de.lproj/MatrixKit.strings

+9-4
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@
225225
"room_member_power_level_prompt" = "Du kannst diese Änderung nicht rückgangig machen, weil du dem Benutzer die gleiche Berechtigungsstufe gibst, die du selbst hast.\nBist du sicher?";
226226
// Attachment
227227
"attachment_size_prompt" = "Möchtest du senden als:";
228-
"attachment_original" = "Originalgröße: %@";
229-
"attachment_small" = "Klein: %@";
230-
"attachment_medium" = "Mittel: %@";
231-
"attachment_large" = "Groß: %@";
228+
"attachment_original" = "Originalgröße (%@)";
229+
"attachment_small" = "Klein (~%@)";
230+
"attachment_medium" = "Mittel (~%@)";
231+
"attachment_large" = "Groß (~%@)";
232232
"attachment_cancel_download" = "Herunterladen abbrechen?";
233233
"attachment_cancel_upload" = "Hochladen abbrechen?";
234234
"attachment_multiselection_size_prompt" = "Bilder senden als:";
@@ -492,3 +492,8 @@
492492
"call_consulting_with_user" = "Bei %@ anfragen";
493493
"microphone_access_not_granted_for_voice_message" = "%@ fehlt die Berechtigung, für Sprachnachrichten auf das Mikrofon zuzugreifen";
494494
"message_reply_to_sender_sent_a_voice_message" = "hat eine Sprachnachricht gesendet.";
495+
"attachment_size_prompt_title" = "Größe zum Senden";
496+
"attachment_large_with_resolution" = "Groß %@ (~%@)";
497+
"attachment_medium_with_resolution" = "Mittel %@ (~%@)";
498+
"attachment_small_with_resolution" = "Klein %@ (~%@)";
499+
"attachment_size_prompt_message" = "Du kannst dies in den Einstellungen ausschalten.";

MatrixKit/Assets/MatrixKitAssets.bundle/en.lproj/MatrixKit.strings

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240
// Room
241241
"room_please_select" = "Please select a room";
242242
"room_error_join_failed_title" = "Failed to join room";
243-
"room_error_join_failed_empty_room" = "It is not currently possible to re-join an empty room.";
243+
"room_error_join_failed_empty_room" = "It is not currently possible to join an empty room.";
244244
"room_error_name_edition_not_authorized" = "You are not authorized to edit this room name";
245245
"room_error_topic_edition_not_authorized" = "You are not authorized to edit this room topic";
246246
"room_error_cannot_load_timeline" = "Failed to load timeline";

MatrixKit/Assets/MatrixKitAssets.bundle/et.lproj/MatrixKit.strings

+9-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
"room_member_power_level_prompt" = "Sa ei saa seda muudatust hiljem tagasi pöörata, sest annad teisele kasutajale samad õigused, mis sinul on.\nKas sa oled ikka kindel?";
3838
// Attachment
3939
"attachment_size_prompt" = "Kas sa soovid faili saata:";
40-
"attachment_original" = "Tegelikus suuruses: %@";
41-
"attachment_small" = "Väiksena: %@";
42-
"attachment_medium" = "Keskmisena: %@";
43-
"attachment_large" = "Suurena: %@";
40+
"attachment_original" = "Tegelikus suuruses (%@)";
41+
"attachment_small" = "Väiksena (%@)";
42+
"attachment_medium" = "Keskmisena (%@)";
43+
"attachment_large" = "Suurena (%@)";
4444
"attachment_cancel_download" = "Kas katkestame allalaadimise?";
4545
"attachment_cancel_upload" = "Kas katkestame üleslaadimise?";
4646
"attachment_multiselection_size_prompt" = "Kas sa soovid pilte saata:";
@@ -464,3 +464,8 @@
464464
"e2e_passphrase_too_short" = "Salafraas on liiga lühike (pikkus peaks olema vähemalt %d tähemärki)";
465465
"microphone_access_not_granted_for_voice_message" = "Häälsõnumite salvestamiseks on vajalik ligipääs mikrofonile, kuid %@'l pole selleks õigusi";
466466
"message_reply_to_sender_sent_a_voice_message" = "saatis häälsõnumi.";
467+
"attachment_large_with_resolution" = "Suurena %@ (~%@)";
468+
"attachment_medium_with_resolution" = "Keskmisena %@ (~%@)";
469+
"attachment_small_with_resolution" = "Väiksena %@ (~%@)";
470+
"attachment_size_prompt_message" = "Seadistustest saad määrata, et see funktsionaalsus pole kasutusel.";
471+
"attachment_size_prompt_title" = "Saatmiseks kinnita meedia suurus";

MatrixKit/Assets/MatrixKitAssets.bundle/hu.lproj/MatrixKit.strings

+9-4
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,10 @@
197197
"room_member_power_level_prompt" = "Valószínűleg nem fogod tudni visszavonni ezt a műveletet, mivel ugyanarra a szintre emeled a felhasználót mint amin te magad vagy.\nBiztos vagy benne?";
198198
// Attachment
199199
"attachment_size_prompt" = "Hogy szeretnéd elküldeni:";
200-
"attachment_original" = "Jelenlegi méret: %@";
201-
"attachment_small" = "Kicsi: %@";
202-
"attachment_medium" = "Közepes: %@";
203-
"attachment_large" = "Nagy: %@";
200+
"attachment_original" = "Jelenlegi méret (%@)";
201+
"attachment_small" = "Kicsi (~%@)";
202+
"attachment_medium" = "Közepes (~%@)";
203+
"attachment_large" = "Nagy (~%@)";
204204
"attachment_cancel_download" = "Megszakítod a letöltést?";
205205
"attachment_cancel_upload" = "Megszakítod a feltöltést?";
206206
"attachment_multiselection_size_prompt" = "Hogy szeretnéd elküldeni a képet:";
@@ -465,3 +465,8 @@
465465
"e2e_passphrase_too_short" = "A jelmondat túl rövid (legalább %d karakter hosszúnak kell lennie)";
466466
"microphone_access_not_granted_for_voice_message" = "Ha hangüzenetekhez a mikrofonhoz szükséges a hozzáférés, de %@ nem rendelkezik a használatához szükséges engedéllyel";
467467
"message_reply_to_sender_sent_a_voice_message" = "hang üzenet elküldve.";
468+
"attachment_large_with_resolution" = "Nagy %@ (~%@)";
469+
"attachment_medium_with_resolution" = "Közepes %@ (~%@)";
470+
"attachment_small_with_resolution" = "Kicsi %@ (~%@)";
471+
"attachment_size_prompt_message" = "Ezt a beállításokban kikapcsolhatod.";
472+
"attachment_size_prompt_title" = "Méret megerősítése küldéshez";

MatrixKit/Assets/MatrixKitAssets.bundle/it.lproj/MatrixKit.strings

+9-4
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@
208208
"room_member_power_level_prompt" = "Non potrai annullare questa modifica perché stai innalzando i permessi dell'utente al tuo stesso livello di accesso.\nSei sicuro?";
209209
// Attachment
210210
"attachment_size_prompt" = "Vuoi inviare come:";
211-
"attachment_original" = "Originale: %@";
212-
"attachment_small" = "Piccolo: %@";
213-
"attachment_medium" = "Medio: %@";
214-
"attachment_large" = "Grande: %@";
211+
"attachment_original" = "Dim. effettiva (%@)";
212+
"attachment_small" = "Piccolo (~%@)";
213+
"attachment_medium" = "Medio (~%@)";
214+
"attachment_large" = "Grande (~%@)";
215215
"attachment_cancel_download" = "Interrompi scaricamento?";
216216
"attachment_cancel_upload" = "Interrompi caricamento?";
217217
"attachment_multiselection_size_prompt" = "Vuoi inviare le immagini come:";
@@ -465,3 +465,8 @@
465465
"e2e_passphrase_too_short" = "Password troppo corta (deve avere almeno %d caratteri)";
466466
"microphone_access_not_granted_for_voice_message" = "I messaggi vocali hanno bisogno dell'accesso al microfono, ma %@ non ha il permesso di usarlo";
467467
"message_reply_to_sender_sent_a_voice_message" = "inviato un messaggio vocale.";
468+
"attachment_large_with_resolution" = "Grande %@ (~%@)";
469+
"attachment_medium_with_resolution" = "Medio %@ (~%@)";
470+
"attachment_small_with_resolution" = "Piccolo %@ (~%@)";
471+
"attachment_size_prompt_message" = "Puoi disattivarlo nelle impostazioni.";
472+
"attachment_size_prompt_title" = "Conferma dimensione da inviare";

0 commit comments

Comments
 (0)