aboutsummaryrefslogtreecommitdiffstats
path: root/Framework/MASLocalization.m
blob: a36d3a41104d11838aae10d2219e5fa6505f0d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "MASLocalization.h"
#import "MASShortcut.h"

NSString *MASLocalizedString(NSString *key, NSString *comment) {
    NSBundle *frameworkBundle = nil;
#ifdef COCOAPODS
    NSURL *bundleURL = [[NSBundle mainBundle] URLForResource:@"MASShortcut" withExtension:@"bundle"];
    frameworkBundle = [NSBundle bundleWithURL:bundleURL];
#else
    frameworkBundle = [NSBundle bundleForClass:[MASShortcut class]];
#endif
    return [frameworkBundle localizedStringForKey:key value:@"XXX" table:@"Localizable"];
}