mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
18 lines
384 B
Objective-C
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
|