diff --git a/pass/Controllers/PasswordsViewController.swift b/pass/Controllers/PasswordsViewController.swift index 315034f..bbc6cb2 100644 --- a/pass/Controllers/PasswordsViewController.swift +++ b/pass/Controllers/PasswordsViewController.swift @@ -155,7 +155,7 @@ class PasswordsViewController: UIViewController, UITableViewDataSource, UITableV do { try self.passwordStore.pullRepository(credential: gitCredential, requestGitPassword: self.requestGitPassword(credential:lastPassword:), transferProgressBlock: {(git_transfer_progress, stop) in DispatchQueue.main.async { - SVProgressHUD.showProgress(Float(git_transfer_progress.pointee.received_objects)/Float(git_transfer_progress.pointee.total_objects), status: "Pull Remote Repository") + SVProgressHUD.showProgress(Float(git_transfer_progress.pointee.received_objects)/Float(git_transfer_progress.pointee.total_objects), status: "PullingFromRemoteRepository".localize()) } }) if self.passwordStore.numberOfLocalCommits ?? 0 > 0 { diff --git a/pass/de.lproj/Localizable.strings b/pass/de.lproj/Localizable.strings index 4adb693..5f4c83b 100644 --- a/pass/de.lproj/Localizable.strings +++ b/pass/de.lproj/Localizable.strings @@ -92,7 +92,8 @@ "FillInGitAccountPassword." = "Bitte gib das Passwort deines Git-Accounts ein."; "NoPasswordStore." = "Es gibt im Moment keinen Passwort Store."; "SyncingPasswordStore" = "Password Store wird synchronisiert"; -"PushingToRemoteRepository" = "Es wird zum Remote Repository gepusht"; +"PullingFromRemoteRepository" = "Update lokales Repository"; +"PushingToRemoteRepository" = "Update Remote-Repository"; // SSH "FillInSshKeyPassphrase." = "Bitte gib das Passwort des SSH-Schlüssels ein."; diff --git a/pass/en.lproj/Localizable.strings b/pass/en.lproj/Localizable.strings index 21044b6..5e33072 100644 --- a/pass/en.lproj/Localizable.strings +++ b/pass/en.lproj/Localizable.strings @@ -92,6 +92,7 @@ "FillInGitAccountPassword." = "Please fill in the password of your Git account."; "NoPasswordStore." = "There is no password store right now."; "SyncingPasswordStore" = "Syncing Password Store"; +"PullingFromRemoteRepository" = "Pulling from Remote Repository"; "PushingToRemoteRepository" = "Pushing to Remote Repository"; // SSH