From 5b431509b143ad6fc808d19c1ee97e2633e95684 Mon Sep 17 00:00:00 2001 From: Juraj Hilje Date: Wed, 4 Sep 2024 13:43:22 +0200 Subject: [PATCH] feat(shortcuts): update AppIntents.swift --- IVPNClient/Models/AppIntents.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IVPNClient/Models/AppIntents.swift b/IVPNClient/Models/AppIntents.swift index 83879e37..49d890d5 100644 --- a/IVPNClient/Models/AppIntents.swift +++ b/IVPNClient/Models/AppIntents.swift @@ -26,7 +26,7 @@ import AppIntents @available(iOS 16, *) struct Connect: AppIntent { - static var title = LocalizedStringResource("Connect") + static var title = LocalizedStringResource("Connect VPN") static var description = IntentDescription("Connect to the VPN") func perform() async throws -> some IntentResult { @@ -38,7 +38,7 @@ struct Connect: AppIntent { @available(iOS 16, *) struct Disconnect: AppIntent { - static var title = LocalizedStringResource("Disconnect") + static var title = LocalizedStringResource("Disconnect VPN") static var description = IntentDescription("Disconnect from the VPN") func perform() async throws -> some IntentResult {