зеркало из https://github.com/nextcloud/talk-ios.git
67 строки
3.4 KiB
Swift
67 строки
3.4 KiB
Swift
//
|
|
// Copyright (c) 2022 Marcel Müller <marcel.mueller@nextcloud.com>
|
|
//
|
|
// Author Marcel Müller <marcel.mueller@nextcloud.com>
|
|
//
|
|
// GNU GPL version 3 or any later version
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class CallsFromOldAccountViewController: UIViewController {
|
|
|
|
@IBOutlet weak var warningTextLabel: UILabel!
|
|
@IBOutlet weak var acknowledgeWarningButton: NCButton!
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCAppBranding.themeTextColor()]
|
|
self.navigationController?.navigationBar.tintColor = NCAppBranding.themeTextColor()
|
|
self.navigationController?.navigationBar.barTintColor = NCAppBranding.themeColor()
|
|
self.navigationController?.navigationBar.isTranslucent = false
|
|
self.navigationItem.title = NSLocalizedString("Calls from old accounts", comment: "")
|
|
|
|
let appearance = UINavigationBarAppearance()
|
|
appearance.configureWithOpaqueBackground()
|
|
appearance.titleTextAttributes = [.foregroundColor: NCAppBranding.themeTextColor()]
|
|
appearance.backgroundColor = NCAppBranding.themeColor()
|
|
self.navigationItem.standardAppearance = appearance
|
|
self.navigationItem.compactAppearance = appearance
|
|
self.navigationItem.scrollEdgeAppearance = appearance
|
|
|
|
acknowledgeWarningButton.setTitle(NSLocalizedString("Confirm and hide warning", comment: ""), for: .normal)
|
|
acknowledgeWarningButton.setButtonStyle(style: .primary)
|
|
|
|
let warning1 = NSLocalizedString("Calls from an old account were received.", comment: "")
|
|
let warning2 = NSLocalizedString("This usually indicates that this device was previously used for an account, which was not properly removed from the server.", comment: "")
|
|
let warning3 = NSLocalizedString("To resolve this issue, use the web interface and go to \"Settings -> Security\".", comment: "")
|
|
let warning4 = NSLocalizedString("Under \"Devices & sessions\" check if there are duplicate entries for the same device.", comment: "")
|
|
let warning5 = NSLocalizedString("Remove old duplicate entries and leave only the most recent entries.", comment: "")
|
|
let warning6 = NSLocalizedString("If you're using multiple servers, you need to check all of them.", comment: "")
|
|
|
|
let warningTextComplete = warning1 + " " + warning2 + "\n\n" + warning3 + "\n\n" + warning4 + "\n\n" + warning5 + "\n\n" + warning6
|
|
|
|
warningTextLabel.text = warningTextComplete
|
|
}
|
|
|
|
@IBAction func acknowledgeWarningButtonPressed(_ sender: Any) {
|
|
NCSettingsController.sharedInstance().setDidReceiveCallsFromOldAccount(false)
|
|
self.navigationController?.popViewController(animated: true)
|
|
}
|
|
|
|
}
|