From 07b4bf8e8c6a13523ce23a66b5c4d2398a4a7550 Mon Sep 17 00:00:00 2001 From: Danny Moesch Date: Sat, 19 Jan 2019 23:53:01 +0100 Subject: [PATCH] Fix wrong string --- pass/Controllers/SettingsTableViewController.swift | 2 +- pass/en.lproj/Localizable.strings | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pass/Controllers/SettingsTableViewController.swift b/pass/Controllers/SettingsTableViewController.swift index 48714bb..85a52ad 100644 --- a/pass/Controllers/SettingsTableViewController.swift +++ b/pass/Controllers/SettingsTableViewController.swift @@ -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 = "CopyPrivateKeyToPass.".localize() + let message = "CopyPublicAndPrivateKeyToPass.".localize() Utils.alert(title: title, message: message, controller: self) } optionMenu.addAction(fileAction) diff --git a/pass/en.lproj/Localizable.strings b/pass/en.lproj/Localizable.strings index f9b8064..1f6c5b6 100644 --- a/pass/en.lproj/Localizable.strings +++ b/pass/en.lproj/Localizable.strings @@ -82,7 +82,7 @@ "Import" = "Import"; "Imported" = "Imported"; "Tips" = "Tips"; -"CopyPrivateKeyToPass." = "Copy your ASCII-armored private key to Pass with the name \"ssh_key\" (without quotes) via iTunes. Then come back and click \"iTunes File Sharing\" to finish."; +"CopyPublicAndPrivateKeyToPass." = "Copy your ASCII-armored public and private keys to Pass with names \"gpg_key.pub\" and \"gpg_key\" (without quotes) via iTunes. Then come back and click \"iTunes File Sharing\" to finish."; "FillInGitAccountPassword." = "Please fill in the password of your Git account."; "NoPasswordStore." = "There is no password store right now."; "SyncingPasswordStore" = "Syncing Password Store";