mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
18 lines
316 B
Objective-C
18 lines
316 B
Objective-C
#import "TGStickersHeaderController.h"
|
|
|
|
NSString *const TGStickersHeaderIdentifier = @"TGStickersHeader";
|
|
|
|
@implementation TGStickersHeaderController
|
|
|
|
- (void)update
|
|
{
|
|
self.nameLabel.text = TGLocalized(@"Watch.Stickers.StickerPacks");
|
|
}
|
|
|
|
+ (NSString *)identifier
|
|
{
|
|
return TGStickersHeaderIdentifier;
|
|
}
|
|
|
|
@end
|