mirror of
https://github.com/danog/Telegram.git
synced 2025-01-05 20:48:36 +01:00
18 lines
310 B
Mathematica
18 lines
310 B
Mathematica
|
#import "TGStickersHeaderController.h"
|
||
|
|
||
|
NSString *const TGStickersHeaderIdentifier = @"TGStickersHeader";
|
||
|
|
||
|
@implementation TGStickersHeaderController
|
||
|
|
||
|
- (void)update
|
||
|
{
|
||
|
self.nameLabel.text = TGLocalized(@"Stickers.StickerPacks");
|
||
|
}
|
||
|
|
||
|
+ (NSString *)identifier
|
||
|
{
|
||
|
return TGStickersHeaderIdentifier;
|
||
|
}
|
||
|
|
||
|
@end
|