mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-22 01:22:46 +02:00
vector-im/element-ios/issues/4899 - Replaced (*almost*) all NSLocalizedString calls with newly generated ObjC methods.
This commit is contained in:
committed by
Stefan Ceriu
parent
83db774313
commit
04bc95a85c
@@ -64,7 +64,7 @@
|
||||
{
|
||||
[super viewWillAppear:animated];
|
||||
|
||||
[AppDelegate theDelegate].masterTabBarController.navigationItem.title = NSLocalizedStringFromTable(@"title_rooms", @"Vector", nil);
|
||||
[AppDelegate theDelegate].masterTabBarController.navigationItem.title = [VectorL10n titleRooms];
|
||||
[AppDelegate theDelegate].masterTabBarController.tabBar.tintColor = ThemeService.shared.theme.tintColor;
|
||||
|
||||
if ([self.dataSource isKindOfClass:RecentsDataSource.class])
|
||||
@@ -128,8 +128,8 @@
|
||||
- (void)updateEmptyView
|
||||
{
|
||||
[self.emptyView fillWith:[self emptyViewArtwork]
|
||||
title:NSLocalizedStringFromTable(@"rooms_empty_view_title", @"Vector", nil)
|
||||
informationText:NSLocalizedStringFromTable(@"rooms_empty_view_information", @"Vector", nil)];
|
||||
title:[VectorL10n roomsEmptyViewTitle]
|
||||
informationText:[VectorL10n roomsEmptyViewInformation]];
|
||||
}
|
||||
|
||||
- (UIImage*)emptyViewArtwork
|
||||
|
||||
Reference in New Issue
Block a user