From d03f963d9be7b377a7163efb73ddc876643154e6 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 3 Sep 2019 21:59:54 -0700 Subject: [PATCH] Improves some ALTServerError descriptions --- AltKit/NSError+ALTServerError.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltKit/NSError+ALTServerError.m b/AltKit/NSError+ALTServerError.m index 44b41aa0..64e71fe3 100644 --- a/AltKit/NSError+ALTServerError.m +++ b/AltKit/NSError+ALTServerError.m @@ -39,10 +39,10 @@ NSErrorDomain const AltServerInstallationErrorDomain = @"com.rileytestut.AltServ return NSLocalizedString(@"Lost connection to AltServer.", @""); case ALTServerErrorDeviceNotFound: - return NSLocalizedString(@"AltServer could not locate this device.", @""); + return NSLocalizedString(@"AltServer could not find this device.", @""); case ALTServerErrorDeviceWriteFailed: - return NSLocalizedString(@"Failed to write app data to phone.", @""); + return NSLocalizedString(@"Failed to write app data to device.", @""); case ALTServerErrorInvalidRequest: return NSLocalizedString(@"AltServer received an invalid request.", @"");