Skip to content

Commit

Permalink
Copy review
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasstrba committed Mar 26, 2024
1 parent 5cb5118 commit 51fe34e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo/EmailProtectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct EmailProtectionView: View {
.alert(isPresented: $shouldShowEmailAlert) {
Alert(title: Text(UserText.disableEmailProtectionAutofill),
message: Text(UserText.emailProtectionSigningOutAlert),
primaryButton: .default(Text(UserText.actionOK), action: {
primaryButton: .default(Text(UserText.autofillKeepEnabledAlertDisableAction), action: {
try? viewModel.emailManager.signOut()
viewModel.shouldShowEmailAlert = false
}),
Expand Down
4 changes: 2 additions & 2 deletions DuckDuckGo/UserText.swift
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ But if you *do* want a peek under the hood, you can find more information about
public static let webTrackingProtectionExplanation = NSLocalizedString("settings.web.tracking.protection.explanation", value: "DuckDuckGo automatically blocks hidden trackers as you browse the web.\n[Learn More](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/)", comment: "Explanation in Settings how the web tracking protection feature works")
public static let cookiePopUpProtectionExplanation = NSLocalizedString("settings.cookie.pop.up.protection.explanation", value: "DuckDuckGo will try to select the most private settings available and hide these pop-ups for you.\n[Learn More](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/#cookie-pop-up-management)", comment: "Explanation in Settings how the cookie pop up protection feature works")
public static let emailProtectionExplanation = NSLocalizedString("settings.email.protection.explanation", value: "Block email trackers and hide your address without switching your email provider.\n[Learn More](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/email-protection/what-is-duckduckgo-email-protection/)", comment: "Explanation in Settings how the email protection feature works")
public static let emailProtectionSigningOutAlert = NSLocalizedString("settings.email.protection.signing.out.alert", value: "Signing out of your Email Protection account will disable Duck Address autofill in this browser. You can still use these addresses and receive forwarded email as usual", comment: "Alert presented to user after clicking on 'Sign out' in Email Protection Settings")
public static let emailProtectionSigningOutAlert = NSLocalizedString("settings.email.protection.signing.out.alert", value: "Signing out of your Email Protection account will disable Duck Address autofill in this browser. You can still use these addresses and receive forwarded email as usual.", comment: "Alert presented to user after clicking on 'Sign out' in Email Protection Settings")
public static let defaultBrowser = NSLocalizedString("settings.default.browser", value: "Default Browser", comment: "The name of Settings category in Privacy Features related to configuration of the default browser")
public static let privateSearch = NSLocalizedString("settings.private.search", value: "Private Search", comment: "The name of Settings category in Privacy Features related to configuration of the search")
public static let searchSettings = NSLocalizedString("settings.search.settings", value: "Search Settings", comment: "Header of settings related to search")
Expand Down Expand Up @@ -1045,7 +1045,7 @@ But if you *do* want a peek under the hood, you can find more information about
public static let settingsFireproofSites = NSLocalizedString("settings.fireproof.sites", value: "Fireproof Sites", comment: "Settings screen cell text for Fireproof Sites")
public static let settingsClearData = NSLocalizedString("settings.clear.data", value: "Automatically Clear Data", comment: "Settings screen cell text for Automatically Clearing Data")
public static let settingsAutolock = NSLocalizedString("settings.autolock", value: "Application Lock", comment: "Settings screen cell text for Application Lock")
public static let settingsAutoLockDescription = NSLocalizedString("settings.autolock.description", value: "If Touch ID, Face ID or a system passcode is set, youll be requested to unlock the app when opening.", comment: "Section footer Autolock description")
public static let settingsAutoLockDescription = NSLocalizedString("settings.autolock.description", value: "If Touch ID, Face ID, or a system passcode is enabled, you'll be asked to unlock the app when opening it.", comment: "Section footer Autolock description")

// Subscription Section
public static let settingsPProSection = NSLocalizedString("settings.ppro", value: "Privacy Pro", comment: "Product name for the subscription bundle")
Expand Down
4 changes: 2 additions & 2 deletions DuckDuckGo/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ But if you *do* want a peek under the hood, you can find more information about
"settings.autolock" = "Application Lock";

/* Section footer Autolock description */
"settings.autolock.description" = "If Touch ID, Face ID or a system passcode is set, youll be requested to unlock the app when opening.";
"settings.autolock.description" = "If Touch ID, Face ID, or a system passcode is enabled, you'll be asked to unlock the app when opening it.";

/* Settings screen cell text for Automatically Clearing Data */
"settings.clear.data" = "Automatically Clear Data";
Expand Down Expand Up @@ -1888,7 +1888,7 @@ But if you *do* want a peek under the hood, you can find more information about
"settings.email.protection.explanation" = "Block email trackers and hide your address without switching your email provider.\n[Learn More](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/email-protection/what-is-duckduckgo-email-protection/)";

/* Alert presented to user after clicking on 'Sign out' in Email Protection Settings */
"settings.email.protection.signing.out.alert" = "Signing out of your Email Protection account will disable Duck Address autofill in this browser. You can still use these addresses and receive forwarded email as usual";
"settings.email.protection.signing.out.alert" = "Signing out of your Email Protection account will disable Duck Address autofill in this browser. You can still use these addresses and receive forwarded email as usual.";

/* Settings cell for Email Protection */
"settings.emailProtection.description" = "Block email trackers and hide your address";
Expand Down

0 comments on commit 51fe34e

Please sign in to comment.