mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
18 lines
384 B
Mathematica
18 lines
384 B
Mathematica
|
#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
|