Localized application into English, German & Swedish
[zxing.git] / iphone / Classes / EmailAction.m
1 //
2 //  EmailAction.m
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 28/05/2008.
6 /*
7  * Copyright 2008 ZXing authors
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22 #import "EmailAction.h"
23
24 @implementation EmailAction
25
26 @synthesize recipient;
27
28 static NSURL *MailtoURL(NSString *to, NSString *sub, NSString *body) {
29   NSMutableString *result = [NSMutableString stringWithFormat:@"mailto:%@", 
30             [to stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
31   if (sub) {
32     [result appendFormat:@"&subject=%@", [sub stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
33   }
34   if (body) {
35     [result appendFormat:@"&body=%@", [body stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
36   }
37   return [NSURL URLWithString:result];
38 }
39
40 - initWithRecipient:(NSString *)rec subject:(NSString *)subject body:(NSString *)body {
41   if ((self = [super initWithURL:MailtoURL(rec, subject, body)]) != nil) {
42     self.recipient = rec;
43   }
44   return self;
45 }
46
47 + actionWithRecipient:(NSString *)recipient subject:(NSString *)subject body:(NSString *)body {
48   return [[[self alloc] initWithRecipient:recipient subject:subject body:body] autorelease];
49 }
50
51 - (NSString *)title {
52   return [NSString localizedStringWithFormat:NSLocalizedString(@"Email %@", @"action title"), self.recipient];
53 }
54
55 - (NSString *)alertTitle {
56   return NSLocalizedString(@"Compose Email", @"alert title");
57 }
58
59 - (NSString *)alertMessage {
60   return [NSString localizedStringWithFormat:NSLocalizedString(@"Compose Email to %@?", @"alert message"), self.recipient];
61 }
62
63 - (NSString *)alertButtonTitle {
64   return NSLocalizedString(@"Compose", @"alert button title");
65 }
66
67
68 @end