Fix spelling of Nostr to use Titlecase instead of lowercase
Changelog-Fixed: Fix spelling of Nostr to use Titlecase instead of lowercase
This commit is contained in:
@@ -96,7 +96,7 @@ struct LoginPrompt: View {
|
|||||||
@Environment(\.dismiss) var dismiss
|
@Environment(\.dismiss) var dismiss
|
||||||
var body: some View {
|
var body: some View {
|
||||||
HStack {
|
HStack {
|
||||||
Text("Already on nostr?", comment: "Ask the user if they already have an account on nostr")
|
Text("Already on Nostr?", comment: "Ask the user if they already have an account on Nostr")
|
||||||
.foregroundColor(Color("DamusMediumGrey"))
|
.foregroundColor(Color("DamusMediumGrey"))
|
||||||
|
|
||||||
Button(NSLocalizedString("Login", comment: "Button to navigate to login view.")) {
|
Button(NSLocalizedString("Login", comment: "Button to navigate to login view.")) {
|
||||||
|
|||||||
@@ -340,7 +340,7 @@ struct CreateAccountPrompt: View {
|
|||||||
@Binding var create_account: Bool
|
@Binding var create_account: Bool
|
||||||
var body: some View {
|
var body: some View {
|
||||||
HStack {
|
HStack {
|
||||||
Text("New to nostr?", comment: "Ask the user if they are new to nostr")
|
Text("New to Nostr?", comment: "Ask the user if they are new to Nostr")
|
||||||
.foregroundColor(Color("DamusMediumGrey"))
|
.foregroundColor(Color("DamusMediumGrey"))
|
||||||
|
|
||||||
Button(NSLocalizedString("Create account", comment: "Button to navigate to create account view.")) {
|
Button(NSLocalizedString("Create account", comment: "Button to navigate to create account view.")) {
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ struct QRCodeView: View {
|
|||||||
|
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
||||||
Text("Follow me on nostr", comment: "Text on QR code view to prompt viewer looking at screen to follow the user.")
|
Text("Follow me on Nostr", comment: "Text on QR code view to prompt viewer looking at screen to follow the user.")
|
||||||
.font(.system(size: 24, weight: .heavy))
|
.font(.system(size: 24, weight: .heavy))
|
||||||
.padding(.top)
|
.padding(.top)
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ struct SetupView: View {
|
|||||||
.fontWeight(.heavy)
|
.fontWeight(.heavy)
|
||||||
.foregroundStyle(DamusLogoGradient.gradient)
|
.foregroundStyle(DamusLogoGradient.gradient)
|
||||||
|
|
||||||
Text("The go-to iOS nostr client", comment: "Quick description of what Damus is")
|
Text("The go-to iOS Nostr client", comment: "Quick description of what Damus is")
|
||||||
.foregroundColor(DamusColors.mediumGrey)
|
.foregroundColor(DamusColors.mediumGrey)
|
||||||
.padding(.top, 10)
|
.padding(.top, 10)
|
||||||
|
|
||||||
@@ -85,7 +85,7 @@ struct LearnAboutNostrLink: View {
|
|||||||
Button(action: {
|
Button(action: {
|
||||||
openURL(URL(string: "https://nostr.com")!)
|
openURL(URL(string: "https://nostr.com")!)
|
||||||
}, label: {
|
}, label: {
|
||||||
Text("Learn more about nostr", comment: "Button that opens up a webpage where the user can learn more about nostr.")
|
Text("Learn more about Nostr", comment: "Button that opens up a webpage where the user can learn more about Nostr.")
|
||||||
.foregroundColor(.accentColor)
|
.foregroundColor(.accentColor)
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -101,7 +101,7 @@ struct WhatIsNostr: View {
|
|||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
Image("nostr-logo")
|
Image("nostr-logo")
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
Text("What is nostr?", comment: "Heading text for section describing what is nostr.")
|
Text("What is Nostr?", comment: "Heading text for section describing what is Nostr.")
|
||||||
.fontWeight(.bold)
|
.fontWeight(.bold)
|
||||||
.padding(.vertical, 10)
|
.padding(.vertical, 10)
|
||||||
|
|
||||||
@@ -120,11 +120,11 @@ struct WhyWeNeedNostr: View {
|
|||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
Image("lightbulb")
|
Image("lightbulb")
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
Text("Why we need nostr?", comment: "Heading text for section describing why nostr is needed.")
|
Text("Why we need Nostr?", comment: "Heading text for section describing why Nostr is needed.")
|
||||||
.fontWeight(.bold)
|
.fontWeight(.bold)
|
||||||
.padding(.vertical, 10)
|
.padding(.vertical, 10)
|
||||||
|
|
||||||
Text("Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken", comment: "Description about why nostr is needed.")
|
Text("Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken", comment: "Description about why Nostr is needed.")
|
||||||
.foregroundColor(DamusColors.mediumGrey)
|
.foregroundColor(DamusColors.mediumGrey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -168,10 +168,10 @@ Sentence composed of 2 variables to describe how many people are following a use
|
|||||||
<target>All</target>
|
<target>All</target>
|
||||||
<note>Label for filter for all notifications.</note>
|
<note>Label for filter for all notifications.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Already on nostr?" xml:space="preserve">
|
<trans-unit id="Already on Nostr?" xml:space="preserve">
|
||||||
<source>Already on nostr?</source>
|
<source>Already on Nostr?</source>
|
||||||
<target>Already on nostr?</target>
|
<target>Already on Nostr?</target>
|
||||||
<note>Ask the user if they already have an account on nostr</note>
|
<note>Ask the user if they already have an account on Nostr</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Always show images" xml:space="preserve">
|
<trans-unit id="Always show images" xml:space="preserve">
|
||||||
<source>Always show images</source>
|
<source>Always show images</source>
|
||||||
@@ -571,9 +571,9 @@ Sentence composed of 2 variables to describe how many people are following a use
|
|||||||
<target>Follow Back</target>
|
<target>Follow Back</target>
|
||||||
<note>Button to follow a user back.</note>
|
<note>Button to follow a user back.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Follow me on nostr" xml:space="preserve">
|
<trans-unit id="Follow me on Nostr" xml:space="preserve">
|
||||||
<source>Follow me on nostr</source>
|
<source>Follow me on Nostr</source>
|
||||||
<target>Follow me on nostr</target>
|
<target>Follow me on Nostr</target>
|
||||||
<note>Text on QR code view to prompt viewer looking at screen to follow the user.</note>
|
<note>Text on QR code view to prompt viewer looking at screen to follow the user.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Followers" xml:space="preserve">
|
<trans-unit id="Followers" xml:space="preserve">
|
||||||
@@ -672,10 +672,10 @@ Sentence composed of 2 variables to describe how many people are following a use
|
|||||||
<note>Navigation title for managing keys.
|
<note>Navigation title for managing keys.
|
||||||
Settings section for managing keys</note>
|
Settings section for managing keys</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Learn more about nostr" xml:space="preserve">
|
<trans-unit id="Learn more about Nostr" xml:space="preserve">
|
||||||
<source>Learn more about nostr</source>
|
<source>Learn more about Nostr</source>
|
||||||
<target>Learn more about nostr</target>
|
<target>Learn more about Nostr</target>
|
||||||
<note>Button that opens up a webpage where the user can learn more about nostr.</note>
|
<note>Button that opens up a webpage where the user can learn more about Nostr.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Left Handed" xml:space="preserve">
|
<trans-unit id="Left Handed" xml:space="preserve">
|
||||||
<source>Left Handed</source>
|
<source>Left Handed</source>
|
||||||
@@ -820,10 +820,10 @@ Sentence composed of 2 variables to describe how many people are following a use
|
|||||||
<target>New encrypted direct message</target>
|
<target>New encrypted direct message</target>
|
||||||
<note>Notification that the user has received a new direct message</note>
|
<note>Notification that the user has received a new direct message</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="New to nostr?" xml:space="preserve">
|
<trans-unit id="New to Nostr?" xml:space="preserve">
|
||||||
<source>New to nostr?</source>
|
<source>New to Nostr?</source>
|
||||||
<target>New to nostr?</target>
|
<target>New to Nostr?</target>
|
||||||
<note>Ask the user if they are new to nostr</note>
|
<note>Ask the user if they are new to Nostr</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="No" xml:space="preserve">
|
<trans-unit id="No" xml:space="preserve">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
@@ -1318,7 +1318,7 @@ Button text to indicate that the zap type is a private zap.</note>
|
|||||||
<trans-unit id="Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken" xml:space="preserve">
|
<trans-unit id="Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken" xml:space="preserve">
|
||||||
<source>Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken</source>
|
<source>Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken</source>
|
||||||
<target>Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken</target>
|
<target>Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken</target>
|
||||||
<note>Description about why nostr is needed.</note>
|
<note>Description about why Nostr is needed.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Software" xml:space="preserve">
|
<trans-unit id="Software" xml:space="preserve">
|
||||||
<source>Software</source>
|
<source>Software</source>
|
||||||
@@ -1360,9 +1360,9 @@ Button text to indicate that the zap type is a private zap.</note>
|
|||||||
<target>The address should either begin with LNURL or should look like an email address.</target>
|
<target>The address should either begin with LNURL or should look like an email address.</target>
|
||||||
<note>Giving the description of the alert message.</note>
|
<note>Giving the description of the alert message.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="The go-to iOS nostr client" xml:space="preserve">
|
<trans-unit id="The go-to iOS Nostr client" xml:space="preserve">
|
||||||
<source>The go-to iOS nostr client</source>
|
<source>The go-to iOS Nostr client</source>
|
||||||
<target>The go-to iOS nostr client</target>
|
<target>The go-to iOS Nostr client</target>
|
||||||
<note>Quick description of what Damus is</note>
|
<note>Quick description of what Damus is</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="They are impersonating someone" xml:space="preserve">
|
<trans-unit id="They are impersonating someone" xml:space="preserve">
|
||||||
@@ -1566,15 +1566,15 @@ YOU WILL NO LONGER BE ABLE TO LOG INTO DAMUS USING THIS ACCOUNT KEY.
|
|||||||
<target>What do you want to report?</target>
|
<target>What do you want to report?</target>
|
||||||
<note>Header text to prompt user what issue they want to report.</note>
|
<note>Header text to prompt user what issue they want to report.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="What is nostr?" xml:space="preserve">
|
<trans-unit id="What is Nostr?" xml:space="preserve">
|
||||||
<source>What is nostr?</source>
|
<source>What is Nostr?</source>
|
||||||
<target>What is nostr?</target>
|
<target>What is Nostr?</target>
|
||||||
<note>Heading text for section describing what is nostr.</note>
|
<note>Heading text for section describing what is Nostr.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Why we need nostr?" xml:space="preserve">
|
<trans-unit id="Why we need Nostr?" xml:space="preserve">
|
||||||
<source>Why we need nostr?</source>
|
<source>Why we need Nostr?</source>
|
||||||
<target>Why we need nostr?</target>
|
<target>Why we need Nostr?</target>
|
||||||
<note>Heading text for section describing why nostr is needed.</note>
|
<note>Heading text for section describing why Nostr is needed.</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Yes, Overwrite" xml:space="preserve">
|
<trans-unit id="Yes, Overwrite" xml:space="preserve">
|
||||||
<source>Yes, Overwrite</source>
|
<source>Yes, Overwrite</source>
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user