Allow localization of the Alert Text label in the Display an Alert action
[adiumx.git] / Source / AIContactOnlineSincePlugin.m
blob2ff9d85d76270e0d70bf2f37a5a4462a94a159af
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "AIContactOnlineSincePlugin.h"
18 #import <Adium/AIInterfaceControllerProtocol.h>
19 #import <Adium/AIListObject.h>
20 #import <Adium/AIListContact.h>
21 #import <AIUtilities/AIDateFormatterAdditions.h>
23 @implementation AIContactOnlineSincePlugin
25 - (void)installPlugin
27     //Install our tooltip entry
28     [[adium interfaceController] registerContactListTooltipEntry:self secondaryEntry:NO];
31 /*!
32  * @brief Tooltip label
33  *
34  * @result A label, or nil if no tooltip entry should be shown
35  */
36 - (NSString *)labelForObject:(AIListObject *)inObject
38     return AILocalizedString(@"Online Since", "This tooltip identifier will followed by a date");
41 /*!
42  * @brief Tooltip entry
43  *
44  * @result The tooltip entry, or nil if no tooltip should be shown
45  */
46 - (NSAttributedString *)entryForObject:(AIListObject *)inObject
48     NSAttributedString * entry = nil;
49     if ([inObject online]) {
51         NSDate  *signonDate;
52         
53         if ([inObject isKindOfClass:[AIListContact class]] &&
54                         (signonDate = [(AIListContact *)inObject signonDate])) {
55             NSString            *currentDay, *signonDay, *signonTime;
56             NSDateFormatter     *dayFormatter, *timeFormatter;
57             
58             //Create the formatters
59             dayFormatter = [NSDateFormatter localizedShortDateFormatter];
60             timeFormatter = [[NSDateFormatter alloc] initWithDateFormat:[NSDateFormatter localizedDateFormatStringShowingSeconds:NO 
61                                                                                                                                                                                                                                    showingAMorPM:YES] 
62                                                                                                    allowNaturalLanguage:YES];
63             
64             //Get day & time strings
65             currentDay = [dayFormatter stringForObjectValue:[NSDate date]];
66             signonDay = [dayFormatter stringForObjectValue:signonDate];
67             signonTime = [timeFormatter stringForObjectValue:signonDate];
68             
69             if ([currentDay isEqualToString:signonDay]) { //Show time
70                 entry = [[NSAttributedString alloc] initWithString:signonTime];
71                 
72             } else { //Show date and time
73                 entry = [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@, %@", signonDay, signonTime]];
75             }
76                         
77                         [timeFormatter release];
78         }
79     }
81     return [entry autorelease];
84 @end