1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Watch/Extension/TGAudioMicAlertController.m

18 lines
384 B
Mathematica
Raw Normal View History

2016-02-25 01:03:51 +01:00
#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