File tree Expand file tree Collapse file tree 10 files changed +66
-4
lines changed
project.xcworkspace/xcshareddata/swiftpm
Assets.xcassets/ThemeImage Expand file tree Collapse file tree 10 files changed +66
-4
lines changed Original file line number Diff line number Diff line change 600600 "$(inherited)",
601601 "@executable_path/Frameworks",
602602 );
603- MARKETING_VERSION = 1.1.0 ;
603+ MARKETING_VERSION = 1.1.2 ;
604604 PRODUCT_BUNDLE_IDENTIFIER = com.quickblox.UIKitSample;
605605 PRODUCT_NAME = "$(TARGET_NAME)";
606606 PROVISIONING_PROFILE_SPECIFIER = "";
648648 "$(inherited)",
649649 "@executable_path/Frameworks",
650650 );
651- MARKETING_VERSION = 1.1.0 ;
651+ MARKETING_VERSION = 1.1.2 ;
652652 PRODUCT_BUNDLE_IDENTIFIER = com.quickblox.UIKitSample;
653653 PRODUCT_NAME = "$(TARGET_NAME)";
654654 PROVISIONING_PROFILE_SPECIFIER = "";
Original file line number Diff line number Diff line change @@ -116,6 +116,12 @@ public class CustomImageTheme: ThemeImageProtocol {
116116 public var message : Image = Image ( systemName: " message " )
117117 public var robot : Image = Image ( " Robot " )
118118 public var translate : Image = Image ( " Translate " )
119+ public var reply : Image = Image ( systemName: " arrowshape.turn.up.backward " )
120+ public var replyFilled : Image = Image ( systemName: " arrowshape.turn.up.left.fill " )
121+ public var forward : Image = Image ( systemName: " arrowshape.turn.up.left.2 " )
122+ public var forwardIcon : Image = Image ( " forwardIcon " )
123+ public var forwardFilled : Image = Image ( " forwardFilled " )
124+ public var save : Image = Image ( systemName: " folder " )
119125
120126 public init ( ) { }
121127}
@@ -221,6 +227,14 @@ public class CustomThemeString: ThemeStringProtocol {
221227 public var unauthorized : String = String ( localized: " utils.string.unauthorized " )
222228 public var authorized : String = String ( localized: " utils.string.authorized " )
223229
230+ public var reply : String = String ( localized: " features.action.reply " )
231+ public var forward : String = String ( localized: " features.action.forward " )
232+ public var save : String = String ( localized: " features.action.save " )
233+ public var forwardedFrom : String = String ( localized: " features.action.forwardedfrom " )
234+ public var repliedTo : String = String ( localized: " features.action.repliedTo " )
235+ public var forwardSuccess : String = String ( localized: " features.action.forwardSuccess " )
236+ public var forwardFailure : String = String ( localized: " features.action.forwardFailure " )
237+
224238 public init ( ) { }
225239}
226240
Original file line number Diff line number Diff line change @@ -304,6 +304,8 @@ struct LoginScreen: View {
304304 private func setupFeatures( ) {
305305 QuickBloxUIKit . feature. ai. apiKey = " "
306306 QuickBloxUIKit . feature. ai. ui = AIUISettings ( theme)
307+ QuickBloxUIKit . feature. forward. enable = true
308+ QuickBloxUIKit . feature. reply. enable = true
307309 }
308310}
309311
Original file line number Diff line number Diff line change 1+ {
2+ "images" : [
3+ {
4+ "filename" : " Forward filled.pdf" ,
5+ "idiom" : " universal"
6+ }
7+ ],
8+ "info" : {
9+ "author" : " xcode" ,
10+ "version" : 1
11+ },
12+ "properties" : {
13+ "template-rendering-intent" : " template"
14+ }
15+ }
Original file line number Diff line number Diff line change 1+ {
2+ "images" : [
3+ {
4+ "filename" : " Forward.pdf" ,
5+ "idiom" : " universal"
6+ }
7+ ],
8+ "info" : {
9+ "author" : " xcode" ,
10+ "version" : 1
11+ },
12+ "properties" : {
13+ "template-rendering-intent" : " template"
14+ }
15+ }
Original file line number Diff line number Diff line change 100100"utils.string.unauthorized" = "unauthorized";
101101"utils.string.authorized" = "authorized";
102102
103+ "features.action.reply" = "Reply";
104+ "features.action.forward" = "Forward";
105+ "features.action.save" = "Save";
106+ "features.action.forwardedfrom" = "Forwarded from";
107+ "features.action.repliedTo" = "Replied to";
108+ "features.action.forwardSuccess" = "Message forwarded from";
109+ "features.action.forwardFailure" = "Message Forwarded Failure";
110+
103111/// Example for customization
104112//"dialog.items.empty" = "You don’t have any channels.";
105113//"dialog.members.empty" = "You don’t have any users.";
Original file line number Diff line number Diff line change 9999"utils.string.connected" = "conectado";
100100"utils.string.unauthorized" = "no autorizado";
101101"utils.string.authorized" = "autorizado";
102+
103+ "features.action.reply" = "Responder";
104+ "features.action.forward" = "Adelante";
105+ "features.action.save" = "Guardar";
106+ "features.action.forwardedfrom" = "Reenviado desde";
107+ "features.action.repliedTo" = "Respondido a";
108+ "features.action.forwardSuccess" = "Mensaje reenviado desde";
109+ "features.action.forwardFailure" = "Error del mensaje reenviado";
You can’t perform that action at this time.
0 commit comments