diff --git a/pass/Controllers/PasswordsViewController.swift b/pass/Controllers/PasswordsViewController.swift index 353a887..909804d 100644 --- a/pass/Controllers/PasswordsViewController.swift +++ b/pass/Controllers/PasswordsViewController.swift @@ -413,7 +413,7 @@ class PasswordsViewController: UIViewController, UITableViewDataSource, UITableV private func decryptThenCopyPassword(from indexPath: IndexPath) { guard PGPAgent.shared.isPrepared else { - Utils.alert(title: "CannotCopyPassword".localize(), message: "SetPgpKey.".localize(), controller: self, completion: nil) + Utils.alert(title: "CannotCopyPassword".localize(), message: "PgpKeyNotSet.".localize(), controller: self, completion: nil) return } let passwordEntity = getPasswordEntry(by: indexPath).passwordEntity! @@ -473,7 +473,7 @@ class PasswordsViewController: UIViewController, UITableViewDataSource, UITableV override func shouldPerformSegue(withIdentifier identifier: String, sender: Any?) -> Bool { if identifier == "showPasswordDetail" { guard PGPAgent.shared.isPrepared else { - Utils.alert(title: "CannotShowPassword".localize(), message: "SetPgpKey.".localize(), controller: self, completion: nil) + Utils.alert(title: "CannotShowPassword".localize(), message: "PgpKeyNotSet.".localize(), controller: self, completion: nil) if let s = sender as? UITableViewCell { let selectedIndexPath = tableView.indexPath(for: s)! tableView.deselectRow(at: selectedIndexPath, animated: true) diff --git a/pass/de.lproj/Localizable.strings b/pass/de.lproj/Localizable.strings index b5e94fe..6c1feba 100644 --- a/pass/de.lproj/Localizable.strings +++ b/pass/de.lproj/Localizable.strings @@ -124,7 +124,6 @@ "Decrypting" = "Entschlüssele"; "PgpKeyNotSet." = "PGP-Schlüssel ist nicht eingerichtet. Bitte gib ihn zuerst ein."; "FillInPgpPassphrase." = "Bitte gib das Passwort deines privaten PGP-Schlüssels ein."; -"SetPgpKey." = "PGP Key is not set. Please set your PGP Key first."; "WantToSavePassphrase?" = "Möchtest du das Passwort für spätere Entschlüsselungen speichern?"; "CannotSavePgpKey" = "PGP-Schlüssel kann nicht gespeichert werden"; "SetPgpKeyUrlFirst." = "Bitte gib zuerst die URL des PGP-Schlüssels ein."; diff --git a/pass/en.lproj/Localizable.strings b/pass/en.lproj/Localizable.strings index 8aa1f91..90bba32 100644 --- a/pass/en.lproj/Localizable.strings +++ b/pass/en.lproj/Localizable.strings @@ -124,7 +124,6 @@ "Decrypting" = "Decrypting"; "PgpKeyNotSet." = "PGP Key is not set. Please set your PGP Key first."; "FillInPgpPassphrase." = "Please fill in the passphrase of your PGP secret key."; -"SetPgpKey." = "PGP Key is not set. Please set your PGP Key first."; "WantToSavePassphrase?" = "Do you want to save the passphrase for later decryption?"; "CannotSavePgpKey" = "Cannot Save PGP Key"; "SetPgpKeyUrlFirst." = "Please set PGP key URL first.";