summaryrefslogtreecommitdiff
path: root/MobileCydia.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-06-10 01:38:11 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2014-06-10 01:38:11 -0700
commitf27e8745f15ecd0d15e26bec53b9d36938e8296c (patch)
tree4aebf13dc2fc927fd7389a50444701b4b8fb836d /MobileCydia.mm
parent6e4215dd5a1c31d2e69e79ea8ecdd413cf3418fa (diff)
Add more detail in body of the Invalid URL dialog.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r--MobileCydia.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index fb87a44..911dd8b 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -8500,8 +8500,8 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi
static Pcre href_r("^http(s?)://[^# ]*$");
if (!href_r(href)) {
UIAlertView *alert = [[[UIAlertView alloc]
- initWithTitle:Error_
- message:UCLocalize("INVALID_URL")
+ initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("INVALID_URL")]
+ message:UCLocalize("INVALID_URL_EX")
delegate:self
cancelButtonTitle:UCLocalize("OK")
otherButtonTitles:nil