reworked layout for advanced tab in database settings windows

This commit is contained in:
michael starke
2017-10-16 11:56:02 +02:00
parent f066038476
commit b3e9603390
7 changed files with 324 additions and 193 deletions

View File

@@ -0,0 +1,16 @@
//
// MPDayCountFormatter.h
// MacPass
//
// Created by Michael Starke on 15.10.17.
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MPDayCountFormatter : NSFormatter
@property (copy) NSString *zeroFormat; // Supply this to override the default format for a 0-value. Default will localize: "ZERO_DAYS"
@property (copy) NSString *valueFormat; // Supply this to override the defualt format for all values not 0. Default will localized "%ld_DAYS"
@end