Add missing SSH private key localization string

This commit is contained in:
Danny Moesch 2019-01-20 11:13:27 +01:00 committed by Mingshen Sun
parent 07b4bf8e8c
commit 804a0f06bf
3 changed files with 4 additions and 3 deletions

View file

@ -249,7 +249,7 @@ class GitServerSettingTableViewController: UITableViewController {
fileActionTitle.append(" (\("Tips".localize()))")
let fileAction = UIAlertAction(title: fileActionTitle, style: .default) { _ in
let title = "Tips".localize()
let message = "CopyPrivateKeyToPass.".localize()
let message = "SshCopyPrivateKeyToPass.".localize()
Utils.alert(title: title, message: message, controller: self)
}
optionMenu.addAction(fileAction)

View file

@ -230,7 +230,7 @@ class SettingsTableViewController: UITableViewController, UITabBarControllerDele
fileActionTitle.append(" (\("Tips".localize()))")
let fileAction = UIAlertAction(title: fileActionTitle, style: .default) { _ in
let title = "Tips".localize()
let message = "CopyPublicAndPrivateKeyToPass.".localize()
let message = "PgpCopyPublicAndPrivateKeyToPass.".localize()
Utils.alert(title: title, message: message, controller: self)
}
optionMenu.addAction(fileAction)