Merge pull request #137 from SimplyDanny/develop

A typo fix and some text improvements
This commit is contained in:
Yishi Lin 2017-10-19 18:42:23 +08:00 committed by GitHub
commit 53de15abd3
3 changed files with 3 additions and 3 deletions

View file

@ -1272,7 +1272,7 @@ Phone Support PIN #: 84719</string>
<autoresizingMask key="autoresizingMask"/>
<attributedString key="attributedText">
<fragment>
<string key="content">GnuPG supports a command-line option --armor that that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format.
<string key="content">GnuPG supports the command-line option "-a" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format.
</string>
<attributes>

View file

@ -71,7 +71,7 @@ class GeneralSettingsTableViewController: BasicStaticTableViewController {
[.title: "Remember Git Credential Passphrase", .action: "none",],
],
[
[.title: "Show Folder", .action: "none",],
[.title: "Show Folders", .action: "none",],
[.title: "Hide Unknown Fields", .action: "none",],
[.title: "Hide OTP Fields", .action: "none",],
],

View file

@ -669,7 +669,7 @@ public class PasswordStore {
let saveURL = storeURL.appendingPathComponent(passwordEntity.getURL()!.path)
try self.encrypt(password: password).write(to: saveURL)
try gitAdd(path: passwordEntity.getURL()!.path)
let _ = try gitCommit(message: "Edit password for \(passwordEntity.getURL()!.deletingPathExtension().path.removingPercentEncoding!) to store using Pass for iOS.")
let _ = try gitCommit(message: "Edit password for \(passwordEntity.getURL()!.deletingPathExtension().path.removingPercentEncoding!) using Pass for iOS.")
newPasswordEntity = passwordEntity
newPasswordEntity?.synced = false
}