-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAlternativeKit.m
38 lines (32 loc) · 968 Bytes
/
AlternativeKit.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// AlternativeKit.m
// FM10SX
//
// Created by Amy Kettlewell on 09/11/14.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "AlternativeKit.h"
@implementation AlternativeKit
@synthesize kitNumber, type, alternativeKitNumber, year, competitionUID, outfieldKit, colour;
- (NSArray *)kitNumberStrings
{
NSArray *strings = [NSArray arrayWithObjects:
NSLocalizedString(@"Home", @"kit type"),
NSLocalizedString(@"Away", @"kit type"),
NSLocalizedString(@"Third", @"kit type"),
nil];
return strings;
}
- (NSArray *)typeStrings
{
NSArray *strings = [NSArray arrayWithObjects:
NSLocalizedString(@"Invalid", @"general 'invalid' option"),
NSLocalizedString(@"Shirt", @"kit type"),
NSLocalizedString(@"Icon", @"kit type"),
NSLocalizedString(@"Text", @"kit type"),
NSLocalizedString(@"Shorts", @"kit type"),
NSLocalizedString(@"Socks", @"kit type"),
nil];
return strings;
}
@end