Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

No bug: Add missing localization for test networks copy #7647

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct NetworkSelectionRootView: View {
.listRowBackground(Color(.secondaryBraveGroupedBackground))
}
}, header: {
WalletListHeaderView(title: Text("Test Networks"))
WalletListHeaderView(title: Text(Strings.Wallet.networkSelectionTestNetworks))
})
}
}
Expand Down
7 changes: 7 additions & 0 deletions Sources/BraveWallet/WalletStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2829,6 +2829,13 @@ extension Strings {
value: "Secondary Networks",
comment: "The title of the section for secondary networks in the network selection view."
)
public static let networkSelectionTestNetworks = NSLocalizedString(
"wallet.networkSelectionTestNetworks",
tableName: "BraveWallet",
bundle: .module,
value: "Test Networks",
comment: "The title of the section for test networks in the network selection view."
)
public static let networkSelectionTestnetAccessibilityLabel = NSLocalizedString(
"wallet.networkSelectionTestnetAccessibilityLabel",
tableName: "BraveWallet",
Expand Down