Skip to content

Commit

Permalink
Fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
graeme committed Dec 17, 2024
1 parent fed45fe commit c359d74
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo/UserText.swift
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ But if you *do* want a peek under the hood, you can find more information about
static let unknownErrorTryAgainMessage = NSLocalizedString("error.unknown.try.again", value: "An unknown error has occurred", comment: "Generic error message on a dialog for when the cause is not known.")
public static let syncPausedAlertOkButton = NSLocalizedString("alert.sync-paused-alert-ok-button", value: "OK", comment: "Confirmation button in alert")
public static let syncPausedAlertLearnMoreButton = NSLocalizedString("alert.sync-paused-alert-learn-more-button", value: "Learn More", comment: "Learn more button in alert")
public static let syncAlertSwitchAccountTitle = NSLocalizedString("alert.sync-switch-account-button", value: "Switch to a different Sync?", comment: "Switch account title in alert")
public static let syncAlertSwitchAccountTitle = NSLocalizedString("alert.sync-switch-account-title", value: "Switch to a different Sync?", comment: "Switch account title in alert")
public static let syncAlertSwitchAccountMessage = NSLocalizedString("alert.sync-switch-account-message", value: "This device is already synced, are you sure you want to sync it with a different back up or device? Switching won't remove any data already synced to this.", comment: "Description for switching sync accounts when there's two")
public static let syncAlertSwitchAccountButton = NSLocalizedString("alert.sync-switch-account-button", value: "Switch Account", comment: "Switch account button in alert")
public static let syncErrorAlertTitle = NSLocalizedString("alert.sync-error", value: "Sync & Backup Error", comment: "Title for sync error alert")
Expand Down
8 changes: 5 additions & 3 deletions DuckDuckGo/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,15 @@
/* Title for alert shown when sync paused for an error */
"alert.sync-paused-title" = "Sync is Paused";

/* Switch account button in alert
Switch account title in alert */
"alert.sync-switch-account-button" = "Switch to a different Sync?";
/* Switch account button in alert */
"alert.sync-switch-account-button" = "Switch Account";

/* Description for switching sync accounts when there's two */
"alert.sync-switch-account-message" = "This device is already synced, are you sure you want to sync it with a different back up or device? Switching won't remove any data already synced to this.";

/* Switch account title in alert */
"alert.sync-switch-account-title" = "Switch to a different Sync?";

/* Description for alert shown when sync error occurs because of too many requests */
"alert.sync-too-many-requests-error-description" = "Sync & Backup is temporarily unavailable.";

Expand Down

0 comments on commit c359d74

Please sign in to comment.