1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 02:17:51 +01:00
Telegram/Watch/Extension/TGAudioMicAlertController.m
2016-02-25 01:03:51 +01:00

18 lines
384 B
Objective-C

#import "TGAudioMicAlertController.h"
NSString *const TGAudioMicAlertControllerIdentifier = @"TGAudioMicAlertController";
@implementation TGAudioMicAlertController
- (void)configureWithContext:(id<TGInterfaceContext>)context
{
self.alertLabel.text = TGLocalized(@"Watch.Microphone.Access");
}
+ (NSString *)identifier
{
return TGAudioMicAlertControllerIdentifier;
}
@end