Manos Chorianopoulos

fix handleSharing popups titles

......@@ -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{
......