Skip to content

Commit

Permalink
Added localisation capability
Browse files Browse the repository at this point in the history
  • Loading branch information
tonymillion committed Dec 4, 2011
1 parent d8fd885 commit 843a2c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Reachability.m
Original file line number Diff line number Diff line change
Expand Up @@ -387,14 +387,14 @@ -(NSString*)currentReachabilityString
if(temp == reachableOnWWAN)
{
// updated for the fact we have CDMA phones now!
return @"Cellular";
return NSLocalizedString(@"Cellular", @"");
}
if (temp == ReachableViaWiFi)
{
return @"WiFi";
return NSLocalizedString(@"WiFi", @"");
}

return @"No Connection";
return NSLocalizedString(@"No Connection", @"");
}

-(NSString*)currentReachabilityFlags
Expand Down

0 comments on commit 843a2c6

Please sign in to comment.