mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
342 B
Objective-C
19 lines
342 B
Objective-C
#import "TGStickersHeaderController.h"
|
|
#import "TGWatchCommon.h"
|
|
|
|
NSString *const TGStickersHeaderIdentifier = @"TGStickersHeader";
|
|
|
|
@implementation TGStickersHeaderController
|
|
|
|
- (void)update
|
|
{
|
|
self.nameLabel.text = TGLocalized(@"Watch.Stickers.StickerPacks");
|
|
}
|
|
|
|
+ (NSString *)identifier
|
|
{
|
|
return TGStickersHeaderIdentifier;
|
|
}
|
|
|
|
@end
|