Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOB-1940 - Updated search domain to purchase title #470

Merged
merged 1 commit into from
Apr 3, 2024
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 @@ -1010,6 +1010,7 @@ extension String {
static let getDomainCardSubtitle = "GET_DOMAIN_CARD_SUBTITLE"
static let findANewDomain = "FIND_A_NEW_DOMAIN"
static let findYourDomain = "FIND_YOUR_DOMAIN"
static let searchForANewDomain = "SEARCH_FOR_A_NEW_DOMAIN"
static let trending = "TRENDING"
static let noAvailableDomains = "NO_AVAILABLE_DOMAINS"
static let tryEnterDifferentName = "TRY_ENTER_DIFF_NAME"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private extension PurchaseSearchDomainsView {
@ViewBuilder
func headerView() -> some View {
VStack(spacing: 16) {
Text(String.Constants.findYourDomain.localized())
Text(String.Constants.searchForANewDomain.localized())
.titleText()
}
.padding(EdgeInsets(top: 56, leading: 0, bottom: 0, trailing: 0))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,7 @@
"GET_DOMAIN_CARD_SUBTITLE" = "Own your identity in the digital world.\nGet started with a Web3 domain.";
"FIND_A_NEW_DOMAIN" = "Find a new domain";
"FIND_YOUR_DOMAIN" = "Find your domain";
"SEARCH_FOR_A_NEW_DOMAIN" = "Search for a new domain";
"TRENDING" = "Trending";
"NO_AVAILABLE_DOMAINS" = "No available domains";
"TRY_ENTER_DIFF_NAME" = "Try entering a different name.";
Expand Down