Try to use NSLocalizedString
instead of hardcoded values. Usage article here.
Then just define your titles like that:
let cancelButtonText = NSLocalizedString("Cancel", comment: "")
And set it:
let cancelAction = UIAlertAction(title: cancelButtonText, style: .cancel, handler: nil)