Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-09-26 13:23:28 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f6d815d78715cf4c7b338e88775f8b0640978bf3
f6d815d7
1 parent
926da429
fix handleSharing popups titles
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
f6d815d
...
...
@@ -3129,7 +3129,7 @@ public class swiftApi {
func
acceptSharingDialog
(
_
controller
:
UIViewController
)
->
Void
{
let
alert
=
UIAlertController
(
title
:
"Συγχαρητήρια!"
,
message
:
"
Μόλις έλαβες το δώρο σου
!"
,
preferredStyle
:
.
alert
)
let
alert
=
UIAlertController
(
title
:
"Συγχαρητήρια!"
,
message
:
"
Το δώρο σου ενεργοποιήθηκε επιτυχώς
!"
,
preferredStyle
:
.
alert
)
alert
.
addAction
(
UIAlertAction
(
title
:
"OK"
,
style
:
.
default
,
handler
:
{
action
in
switch
action
.
style
{
case
.
default
:
...
...
@@ -3148,7 +3148,7 @@ public class swiftApi {
func
rejectSharingDialog
(
_
controller
:
UIViewController
,
_
sharingId
:
String
)
->
Void
{
let
alert
=
UIAlertController
(
title
:
"Είσαι σίγουρος
;"
,
message
:
"Είσαι σίγουρος ότι θέλεις να απορρίψεις το δώρο που μόλις έλαβες;
"
,
preferredStyle
:
.
alert
)
let
alert
=
UIAlertController
(
title
:
"Είσαι σίγουρος
/-η;"
,
message
:
"Το δώρο θα επιστραφεί και δεν θα μπορεί να ενεργοποιηθεί ξανά.
"
,
preferredStyle
:
.
alert
)
let
cancelButton
=
UIAlertAction
(
title
:
"Άκυρο"
,
style
:
.
default
,
handler
:
{
action
in
switch
action
.
style
{
...
...
Please
register
or
login
to post a comment