Repo // Clang-format.
This commit is contained in:
parent
1f19b9b8c4
commit
cb81da6581
|
@ -14,14 +14,14 @@ let package = Package(
|
|||
],
|
||||
dependencies: [
|
||||
.package(path: "../vChewing_CocoaExtension"),
|
||||
.package(path: "../vChewing_SwiftExtension")
|
||||
.package(path: "../vChewing_SwiftExtension"),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "Shared",
|
||||
dependencies: [
|
||||
.product(name: "CocoaExtension", package: "vChewing_CocoaExtension"),
|
||||
.product(name: "SwiftExtension", package: "vChewing_SwiftExtension")
|
||||
.product(name: "SwiftExtension", package: "vChewing_SwiftExtension"),
|
||||
]
|
||||
)
|
||||
]
|
||||
|
|
|
@ -43,8 +43,8 @@ extension SessionCtl {
|
|||
if PrefMgr.shared.showNotificationsWhenTogglingCapsLock {
|
||||
Notifier.notify(
|
||||
message: isCapsLockTurnedOn
|
||||
? "Caps Lock" + NSLocalizedString("Alphanumerical Input Mode", comment: "") + "\n" + status
|
||||
: NSLocalizedString("Chinese Input Mode", comment: "") + "\n" + status
|
||||
? "Caps Lock" + NSLocalizedString("Alphanumerical Input Mode", comment: "") + "\n" + status
|
||||
: NSLocalizedString("Chinese Input Mode", comment: "") + "\n" + status
|
||||
)
|
||||
}
|
||||
self.isASCIIMode = isCapsLockTurnedOn
|
||||
|
|
Loading…
Reference in New Issue