mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
410 B
Objective-C
19 lines
410 B
Objective-C
#import "TGAudioMicAlertController.h"
|
|
#import "TGWatchCommon.h"
|
|
|
|
NSString *const TGAudioMicAlertControllerIdentifier = @"TGAudioMicAlertController";
|
|
|
|
@implementation TGAudioMicAlertController
|
|
|
|
- (void)configureWithContext:(id<TGInterfaceContext>)context
|
|
{
|
|
self.alertLabel.text = TGLocalized(@"Watch.Microphone.Access");
|
|
}
|
|
|
|
+ (NSString *)identifier
|
|
{
|
|
return TGAudioMicAlertControllerIdentifier;
|
|
}
|
|
|
|
@end
|