mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 03:32:40 +00:00
Fixed errors that would occur if undo was mixed with emptying the trash Updated localizations Added localized descriptions Fixed #31 Database name is displayed, if none is given fallback is used
17 lines
298 B
Objective-C
17 lines
298 B
Objective-C
//
|
|
// NSDate+Humanized.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 10.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSDate (Humanized)
|
|
|
|
+ (NSString *)humanizedDate:(NSDate *)date;
|
|
- (NSString *)humanized;
|
|
|
|
@end
|