From ebe5f02127975552b6937fb00a36cd238fe694ad Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 6 Dec 2020 00:35:17 -0600 Subject: [PATCH] Remove extension point terminology. Fixes #2640 --- .../ExtensionPointPreferencesViewController.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mac/Preferences/ExtensionPoints/ExtensionPointPreferencesViewController.swift b/Mac/Preferences/ExtensionPoints/ExtensionPointPreferencesViewController.swift index 2a596f66b..596c6f8b5 100644 --- a/Mac/Preferences/ExtensionPoints/ExtensionPointPreferencesViewController.swift +++ b/Mac/Preferences/ExtensionPoints/ExtensionPointPreferencesViewController.swift @@ -186,12 +186,12 @@ private extension ExtensionPointPreferencesViewController { if tableView.selectedRow == -1 { var helpText = "" if ExtensionPointManager.shared.availableExtensionPointTypes.count == 0 { - helpText = NSLocalizedString("You've added all available extension points.", comment: "Extension Explainer") + helpText = NSLocalizedString("You've added all available extensions.", comment: "Extension Explainer") } else if activeExtensionPoints.count == 0 { helpText = NSLocalizedString("Add an extension by clicking the + button.", comment: "Extension Explainer") } else { - helpText = NSLocalizedString("Select an extension or add a new extension point by clicking the + button.", comment: "Extension Explainer") + helpText = NSLocalizedString("Select an extension or add a new extension by clicking the + button.", comment: "Extension Explainer") } if let controller = children.first { @@ -229,12 +229,12 @@ private extension ExtensionPointPreferencesViewController { if tableView.selectedRow == -1 { var helpText = "" if ExtensionPointManager.shared.availableExtensionPointTypes.count == 0 { - helpText = NSLocalizedString("You've added all available extension points.", comment: "Extension Explainer") + helpText = NSLocalizedString("You've added all available extensions.", comment: "Extension Explainer") } else if activeExtensionPoints.count == 0 { helpText = NSLocalizedString("Add an extension by clicking the + button.", comment: "Extension Explainer") } else { - helpText = NSLocalizedString("Select an extension or add a new extension point by clicking the + button.", comment: "Extension Explainer") + helpText = NSLocalizedString("Select an extension or add a new extension by clicking the + button.", comment: "Extension Explainer") } let textHostingController = NSHostingController(rootView: EnableExtensionPointHelpView(helpText: helpText, preferencesController: self))