Issue 412
[zxing.git] / iphone / Classes / ShowMapAction.m
index 5c2fdee..f3817a2 100644 (file)
@@ -32,31 +32,31 @@ static NSURL * URLForLocation(NSString *location) {
   return [NSURL URLWithString:urlString];
 }
 
-- initWithLocation:(NSString *)l {
+- (id)initWithLocation:(NSString *)l {
   if ((self = [super initWithURL:URLForLocation(l)]) != nil) {
     self.location = l;
   }
   return self;
 }
 
-+ actionWithLocation:(NSString *)location {
++ (id)actionWithLocation:(NSString *)location {
   return [[[self alloc] initWithLocation:location] autorelease];
 }
 
 - (NSString *)title {
-  return NSLocalizedString(@"Show on Map", @"action title");
+  return NSLocalizedString(@"ShowMapAction action title", @"Show on Map");
 }
 
 - (NSString *)alertTitle {
-  return NSLocalizedString(@"Show on Map", @"alert title");
+  return NSLocalizedString(@"ShowMapAction alert title", @"Show on Map");
 }
 
 - (NSString *)alertMessage {
-  return [NSString stringWithFormat:NSLocalizedString(@"Show location %@ on Map ?", @"alert message"), self.location];
+  return [NSString stringWithFormat:NSLocalizedString(@"ShowMapAction alert message", @"Show location %@ on Map ?"), self.location];
 }
 
 - (NSString *)alertButtonTitle {
-  return NSLocalizedString(@"Show", @"alert button title");
+  return NSLocalizedString(@"ShowMapAction alert button title", @"Show");
 }