mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 17:32:17 +00:00
34 lines
598 B
Objective-C
34 lines
598 B
Objective-C
//
|
|
// MPUpdateSettingsController.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 04.02.14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPUpdateSettingsController.h"
|
|
|
|
@interface MPUpdateSettingsController ()
|
|
|
|
@end
|
|
|
|
@implementation MPUpdateSettingsController
|
|
|
|
- (NSString *)nibName {
|
|
return @"UpdateSettings";
|
|
}
|
|
|
|
- (NSString *)identifier {
|
|
return @"UpdateSettings";
|
|
}
|
|
|
|
- (NSImage *)image {
|
|
return [NSImage imageNamed:NSImageNameApplicationIcon];
|
|
}
|
|
|
|
- (NSString *)label {
|
|
return NSLocalizedString(@"UPDATE_SETTINGS", @"Update Settings Label");
|
|
}
|
|
|
|
@end
|