Skip to content

Commit

Permalink
Rename 'Network' tab to 'Browse' to reflect its functionality
Browse files Browse the repository at this point in the history
This fixes #1857 and starts to align the language with the forthcoming desktop UI
  • Loading branch information
fkuehne committed Aug 23, 2024
1 parent f64c42a commit b68dbf0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Resources/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
"DOWNLOADVC_DETAILTEXT" = "Download files directly to your device";
"HEADER_TITLE_RENDERER" = "Select a casting device";

"BROWSE" = "Browse";
"NETWORK" = "Network";
"LOCAL_NETWORK" = "Local Network";
"CONNECT_TO_SERVER" = "Connect to Server";
Expand Down
4 changes: 2 additions & 2 deletions Sources/Network/Server List/VLCServerListViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ - (void)loadView

- (void)setupUI
{
self.title = NSLocalizedString(@"NETWORK", nil);
self.tabBarItem = [[UITabBarItem alloc] initWithTitle: NSLocalizedString(@"NETWORK", nil)
self.title = NSLocalizedString(@"BROWSE", nil);
self.tabBarItem = [[UITabBarItem alloc] initWithTitle: NSLocalizedString(@"BROWSE", nil)
image: [UIImage imageNamed:@"Network"]
selectedImage: [UIImage imageNamed:@"Network"]];
self.tabBarItem.accessibilityIdentifier = VLCAccessibilityIdentifier.localNetwork;
Expand Down

0 comments on commit b68dbf0

Please sign in to comment.