diff --git a/app/xcode/Sources/VCamCamera/CameraExtension.swift b/app/xcode/Sources/VCamCamera/CameraExtension.swift index 8ad3a80..d91da0b 100644 --- a/app/xcode/Sources/VCamCamera/CameraExtension.swift +++ b/app/xcode/Sources/VCamCamera/CameraExtension.swift @@ -81,7 +81,7 @@ extension CameraExtension: OSSystemExtensionRequestDelegate { if let property = properties.first { continuation.resume(returning: property) } else { - continuation.resume(throwing: NSError(domain: "", code: 0, userInfo: [NSLocalizedDescriptionKey: "Failed to get the propeties"])) + continuation.resume(throwing: NSError(domain: "", code: 0, userInfo: [NSLocalizedDescriptionKey: "Failed to get the properties"])) } } diff --git a/app/xcode/Sources/VCamLocalization/Generated.swift b/app/xcode/Sources/VCamLocalization/Generated.swift index 2ea04d2..ce0c918 100644 --- a/app/xcode/Sources/VCamLocalization/Generated.swift +++ b/app/xcode/Sources/VCamLocalization/Generated.swift @@ -160,7 +160,7 @@ public enum L10n { public static let enableVSync = LocalizedString(lookupKey: "enableVSync") /// Entire Display public static let entireDisplay = LocalizedString(lookupKey: "entireDisplay") - /// No permisison. Please allow screen recording in the Security & Privacy of the System Preferences. + /// No permission. Please allow screen recording in the Security & Privacy of the System Preferences. public static let errorScreenCapturePermission = LocalizedString(lookupKey: "errorScreenCapturePermission") /// A new version %@ is available! public static func existsNewAppVersion(_ p1: Any) -> ArgumentsLocalizedString { diff --git a/app/xcode/Sources/VCamLocalization/VCamResources/en.lproj/Localizable.strings b/app/xcode/Sources/VCamLocalization/VCamResources/en.lproj/Localizable.strings index 6453546..a4fd18d 100644 --- a/app/xcode/Sources/VCamLocalization/VCamResources/en.lproj/Localizable.strings +++ b/app/xcode/Sources/VCamLocalization/VCamResources/en.lproj/Localizable.strings @@ -237,7 +237,7 @@ "window" = "Window"; "videoCaptureDevice" = "Video Capture Device"; "previewCapture" = "Preview the capture"; -"errorScreenCapturePermission" = "No permisison. Please allow screen recording in the Security & Privacy of the System Preferences."; +"errorScreenCapturePermission" = "No permission. Please allow screen recording in the Security & Privacy of the System Preferences."; "refreshScreen" = "Refresh Screen"; // MARK: - Integration diff --git a/app/xcode/Sources/VCamUI/Shortcut/VCamShortcut+View.swift b/app/xcode/Sources/VCamUI/Shortcut/VCamShortcut+View.swift index 6345fa1..408b436 100644 --- a/app/xcode/Sources/VCamUI/Shortcut/VCamShortcut+View.swift +++ b/app/xcode/Sources/VCamUI/Shortcut/VCamShortcut+View.swift @@ -21,7 +21,7 @@ public extension VCamShortcut { public extension View { @ViewBuilder func keyboardShortcut(_ shortcutKey: VCamShortcut.ShortcutKey?, action: @escaping () -> Void) -> some View { if let shortcutKey { - // Workround to make shortcut keys work on any button + // Workaround to make shortcut keys work on any button let hiddenButton = Button("", action: action) .frame(width: 0, height: 0) .opacity(0) diff --git a/app/xcode/Sources/VCamUI/Shortcut/VCamShortcutBuilderView.swift b/app/xcode/Sources/VCamUI/Shortcut/VCamShortcutBuilderView.swift index 1a93ef8..2a0dd77 100644 --- a/app/xcode/Sources/VCamUI/Shortcut/VCamShortcutBuilderView.swift +++ b/app/xcode/Sources/VCamUI/Shortcut/VCamShortcutBuilderView.swift @@ -49,8 +49,8 @@ public struct VCamShortcutBuilderView: View { } .frame(maxWidth: .infinity) } - .onMove { offsets, desination in - shortcut.configurations.move(fromOffsets: offsets, toOffset: desination) + .onMove { offsets, destination in + shortcut.configurations.move(fromOffsets: offsets, toOffset: destination) } .listRowSeparator(.hidden) }